使用 .htaccess 重定向 403 错误

使用 .htaccess 重定向 403 错误

我想使用 .htaccess 重定向任何 403,但它似乎不起作用。

Options +FollowSymlinks

RewriteEngine on
ErrorDocument 403 notfound.html
RewriteRule notfound.html

感谢所有帮助。

谢谢 Jean

答案1

ErrorDocument 403 /notfound.html

您不需要 mod_rewrite 来实现这一点。只有当您想将任何错误捕获到特定错误页面时才需要它。

相关内容