我想为 403 使用自定义错误文件,但 apache 似乎只是忽略了该指令ErrorDocument
,只是给了我默认的错误文件。这是我的开始httpd.conf
ServerRoot "C:/xampp/apache"
Listen 80
ErrorDocument 403 "/403.html"
ErrorDocument 404 "/403.html"
我只是添加404
看看它是否有效,它没有。该文件403.html
存在于C:\xampp\apache\403.html
我尝试ErrorDocument
在配置文件中将指令进一步向下移动,其中描述指令的注释ErrorDocument
开始但结果是相同的。
我正在测试的文件夹中的任何文件中都没有ErrorDocument
指令。.htaccess
你能告诉我为什么apache不理我吗?
编辑
只是为了确保我会提到我测试这个的方式。我有一个包含以下内容的.htaccess
文件C:\xampp\htdocs
Order deny,allow
Allow from 127.0.0.1
Allow from ::1
Deny from all
其目的是拒绝访问所有未明确允许的子文件夹和文件,然后我只是向我的公共 IP 发送请求以拒绝访问。