6

例如,我想将所有 404 错误重定向到“404.php”。

我试过ErrorDocument 404 /404.php在.htaccess中使用,但没有运气,也许我的其他规则不允许这样做,我不太确定,因为我在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]
4

2 回答 2

12

通过放置错误文档的完整 URL 来解决。

例子:

#### Rule for Error Page - 404 ####
ErrorDocument 404 http://www.domain.com/404.html
于 2013-02-12T18:03:42.943 回答
0

没有必要提供完整的 URL。您还可以提及绝对路径,例如

ErrorCodument 404 /pages/error.php

这比接受的答案更好。

于 2018-04-26T16:53:45.167 回答