我想将所有404错误重定向到“404.php”。
我尝试在.htaccess中使用ErrorDocument 404 /404.php
,但没有运气,也许我的其他规则不允许这种方式,我不确定,因为我无法在www上找到这些信息。
如果有人知道如何解决这个问题,请大声呼喊:P
我目前的.htaccess
#### pie thingy ####
AddType text/x-component .htc
#### Rule for Error Page - 404 ####
ErrorDocument 404 /404.html
#### url rewriting ####
Options +FollowSymlinks
RewriteEngine on
#### REDIRECT IF NO SUB-DOMAIN ####
RewriteCond %{HTTP_HOST} ^([^.]+)\.([^.]+)$ [NC]
RewriteRule ^(.*)$ http://www.%1.%2/$1 [R=301,L]
#### Remove "www." from any subdomain requests ####
RewriteCond %{HTTP_HOST} ^www\.([^.]+)\.precisehire\.com [NC]
RewriteRule (.*) http://%1.precisehire.com/$1 [R=301,L]
#### Rules for rewriting from PHP to HTML with fallback ####
RewriteCond %{REQUEST_URI} ^/(.*)\.html$
RewriteCond %{DOCUMENT_ROOT}/%1.php -f
RewriteRule ^(.*)\.html$ $1.php [nc]
答案 0 :(得分:12)
通过为错误文档放置完整的URL来解决。
示例:
#### Rule for Error Page - 404 ####
ErrorDocument 404 http://www.domain.com/404.html
答案 1 :(得分:0)
没有必要提供完整的网址。您还可以提及绝对路径,如
ErrorCodument 404 /pages/error.php
这是比接受的答案更好的方式。