运维工程师之网站404错误的重定向

时间:2021-11-02 21:53:49

只需要修改各自的规则文件:

windows:修改web.config

<httpErrors errorMode="DetailedLocalOnly">

        <remove statusCode="404" />

        <error statusCode="404" path="/index.php" responseMode="ExecuteURL" />

 </httpErrors>

linux:修改.htaccess

RewriteEngine On
ErrorDocument 404 /index.php

 

如果以上两个文件不存在,请自行创建后上传。