访问控制阿帕奇
Access Control Apache
只是在 Apache 中设置访问控制时遇到问题。所以我想拒绝访问我网站中某个部分的特定 IP 地址。所以当这个ip地址访问我的网站时,他们应该看不到网站的"test"部分。
这是我在 httpd.conf 文件中所做的
<Directory /test>
Order Allow,Deny
Allow from all
Deny from 10.13.89.47
</Directory>
有人可以告诉我我做错了什么吗?
谢谢
我使用了其他东西来让它工作。
<Location/test>
Order Allow,Deny
Allow from all
Deny from 10.13.89.47
</Location>
根据您提供的信息,您的文档根目录是“/”(非常危险)或者您不了解 'Directory' 标签的工作原理。我希望标签看起来更像......
<Directory /srv/www/htdocs/test>
只是在 Apache 中设置访问控制时遇到问题。所以我想拒绝访问我网站中某个部分的特定 IP 地址。所以当这个ip地址访问我的网站时,他们应该看不到网站的"test"部分。
这是我在 httpd.conf 文件中所做的
<Directory /test>
Order Allow,Deny
Allow from all
Deny from 10.13.89.47
</Directory>
有人可以告诉我我做错了什么吗?
谢谢
我使用了其他东西来让它工作。
<Location/test>
Order Allow,Deny
Allow from all
Deny from 10.13.89.47
</Location>
根据您提供的信息,您的文档根目录是“/”(非常危险)或者您不了解 'Directory' 标签的工作原理。我希望标签看起来更像......
<Directory /srv/www/htdocs/test>