我有一个自定义的403页面forbidden.php
我已将其添加到.htaccess但未正常工作
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^notfound\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /notfound.php [L]
ErrorDocument 403 . /forbidden.php
</IfModule>
<Files 403.shtml>
order allow,deny
allow from all
</Files>
我也尝试过:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^notfound\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /notfound.php [L]
</IfModule>
<Files forbidden.php>
order allow,deny
allow from all
</Files>
我错过了什么。 .htaccess不是我的强项
答案 0 :(得分:0)
正确的ErrorDocument
语法是:
ErrorDocument <3-digit-code> <action>
请参阅http://httpd.apache.org/docs/2.4/custom-error.html
实际上它不是mod_rewrite
依赖的,你可以把ErrorDocument
置于条件之外。
另外,您是否尝试使用重写规则来实现404自定义文档???
只需使用,完成。
ErrorDocument 404 /nofound.php
ErrorDocument 403 /forbidden.php