我有一个.htaccess 文件:
<limit GET>
order deny,allow
deny from all
allow from 123.456.789
</limit>
ErrorDocument 403 /403.shtml
但是,这会影响整个目录及其中的文件。我只希望这会影响主目录 URL,而不影响其中的文件。
例如:
http://test.com/test/
= 403 禁止错误
http://test.com/test/file.png
= 无错误
http://test.com/test/file2.png
= 无错误
我该如何改变我的.htaccess 文件来实现这一点?
答案1
听起来你只是想禁止目录列表。
Options -Indexes
会这样做。