使用HTACCESS不能对PHP文件进行IP限制

时间:2012-11-17 18:16:06

标签: .htaccess ip-restrictions

我有一个目录,并使用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访问 问题出在哪里?

1 个答案:

答案 0 :(得分:0)

您似乎想要拒绝目录列表。

针对特定文件,请Option -IndexesIndexIgnore *.tgz *.sql *.tar

请参阅http://wiki.apache.org/httpd/DirectoryListings了解详情。