当我更改代码并添加新内容时,它甚至不允许我加载我的正常页面。如果删除ErrorDocument 404/error.php
(以及其他人),我通常可以进入我的网站。
以下是我的网站域名:carnageband.tk
以下是代码:
# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 500 /error.php
如何绕过重定向的页面? LINK
答案 0 :(得分:0)
我遇到了同样的问题,问题似乎来自.htacess文件。删除.htaccess文件后,网页会再次加载。
我能够通过编辑cPanel文件管理器中的.htaccess文件来修复它,而不是通过FTP传输文件,但我不确定为什么它之前没有工作。
我的代码与您的代码类似:
# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
ErrorDocument 403 /errors.php?p=403
ErrorDocument 404 /errors.php?p=404
ErrorDocument 500 /errors.php?p=500