0

我在处理主机 (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>

有了这一切,自定义错误页面无法正常工作。

4

2 回答 2

0

您的路由正在处理所有针对不存在文件的请求(这将触发 404)。您需要做的是在您的路由脚本 ( index.php) 中查找路由何时不存在,然后从那里返回您的错误文档。

由于这些条件:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

任何通常属于 404 错误的内容都会被捕获并路由到您的index.php脚本。

于 2013-10-22T16:51:36.013 回答
0

尝试为错误文件添加 .html、.php 或任何扩展名

ErrorDocument 404 /error/NotFound(.html)
ErrorDocument 403 /error/Forbidden(.html)

或者,如果使用 .htaccess 文件删除了文件扩展名,则添加斜杠到

ErrorDocument 404 /error/NotFound/
ErrorDocument 403 /error/Forbidden/
于 2013-10-22T16:49:41.507 回答