如何重定向到我的错误页面?
我的目录结构:
在.htaccess文件中:
ErrorDocument 404 /Index.php?controller=Main&action=error
我不知道如何正确判断,但它将我重定向到../返回一个级别..,在xampp ../将是索引文件...并显示:
我想将404错误重定向到索引。
我尝试在.htaccess文件中添加以下行:
ErrorDocument 404 Index.php?controller=Main&action=error
答案 0 :(得分:1)
输入绝对URI,例如ErrorDocument 404 /Index.php?controller=Main&action=error
请参阅https://httpd.apache.org/docs/2.4/mod/core.html#errordocument