我在IP上使用白名单,因此我想告诉用户为什么会这样。
order deny, allow
deny from all
allow from 24.11.95.152
我在HTACCESS中的IP白名单^
现在,我将ErrorDocument设置为/ 403
ErrorDocument 403 /403
最后我将/ 403重写为uhoh.php
RewriteEngine On
RewriteRule ^403/?$ uhoh.php [NC]
但是,我仍然从LiteSpeed那里得到了典型的错误。
答案 0 :(得分:2)
您可以将ErrorDocument
直接用于您希望用于自定义消息的文件。
在你的情况下看起来像这样:
ErrorDocument 403 /uhoh.php
在您的示例中,您似乎正在尝试双重重定向非真正需要的错误页面。