ディレクトリがあり、IP 制限のために htaccess で保護されています。
IP制限はうまく機能しますが、ディレクトリのExcept.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 からのみアクセスできるようにしたい
のですが、どこに問題がありますか?