我有一个目录,并使用htaccess保护IP限制
IP限制工作正常,但仅适用于Directory的.php
文件除外。
示例:
site.com/dir/ <-- Get Access Denied Error
site.com/dir/index.php <-- Open page without access denied error
我的.htaccess文件:
ErrorDocument 404 /notfound2.html
ErrorDocument 403 /notfound2.html
AuthName "Access Restrict"
AuthType Basic
<Limit GET POST>
order deny,allow
deny from all
allow from 47.147.50.5
</Limit>
我想限制一个目录(所有对象都包含php文件)只能从IP访问 问题出在哪里?
答案 0 :(得分:0)
您似乎想要拒绝目录列表。
针对特定文件,请Option -Indexes
或IndexIgnore *.tgz *.sql *.tar
。