我在托管(GoDaddy)上使用错误文档时遇到了一些麻烦。
这是我的htaccess内容:
AddHandler x-httpd-php5-4 .php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?route=$1 [L,QSA,NE]
ErrorDocument 404 /error/NotFound
ErrorDocument 403 /error/Forbidden
RedirectMatch ^/\+(.*)$ http://plus.google.com/[my_profile]
#Options All -Indexes
DirectoryIndex index.php
AddDefaultCharset UTF-8
DefaultLanguage es-PE
SetEnvIfNoCase User-Agent .*google.* search_robot
SetEnvIfNoCase User-Agent .*yahoo.* search_robot
SetEnvIfNoCase User-Agent .*bot.* search_robot
[...]
SetEnvIfNoCase User-Agent “(Ubuntu-feisty)$” bad_bot
Order Deny,Allow
Deny from env=bad_bot
#Deny from All
Allow from env=search_robot
<ifModule mod_gzip.c>
[...]
</ifModule>
<FilesMatch ".(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
#COUNTRY_BLOCK_START
<Limit GET HEAD POST>
order deny,allow
allow from [ip_range]
deny from all
</Limit>
所有这一切,自定义错误页面都无法正常工作。
答案 0 :(得分:0)
尝试添加.html,.php或任何扩展名为
的错误文件ErrorDocument 404 /error/NotFound(.html)
ErrorDocument 403 /error/Forbidden(.html)
或者,如果使用.htaccess文件删除了文件扩展名,则添加斜杠
ErrorDocument 404 /error/NotFound/
ErrorDocument 403 /error/Forbidden/
答案 1 :(得分:0)
您的路由正在处理针对不存在的文件的所有请求(这将触发404)。您需要做的是在路由脚本(index.php
)中查找路由不存在的时间,然后从那里返回错误文档。
由于这些条件:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
任何通常属于404错误的内容都会被捕获并发送到您的index.php
脚本。