我的.htacess
文件中有这个集合:
Order Allow,Deny
Deny from all
Allow from localhost
Allow from 86.101.198.88
(我的IP)
ErrorDocument 404 /block/?code=404
ErrorDocument 403 /block/?code=403
但出于某种原因,我无权从本地主机访问并使用我的 IP。我只是不断被重定向到ErrorDocument
错误 403。我错过了什么?
我的.htacess
文件中有这个集合:
Order Allow,Deny
Deny from all
Allow from localhost
Allow from 86.101.198.88
(我的IP)
ErrorDocument 404 /block/?code=404
ErrorDocument 403 /block/?code=403
但出于某种原因,我无权从本地主机访问并使用我的 IP。我只是不断被重定向到ErrorDocument
错误 403。我错过了什么?
来自https://httpd.apache.org/docs/2.0/mod/mod_access.html
由于您有一个 Deny from all,并且您的命令是 Allow,Deny,所以一切都将被阻止。你可能想要
order Deny,Allow
。