我尝试隐藏目录的内容,并禁用所有目录的目录浏览,除了一些应允许的特定目录。
我尝试在 www.mysite.de/new/audio 和 www.mysite.de/new/images 上允许它。
# Disable directory browsing (works)
Options -Indexes
# Hide the contents of directories (works)
IndexIgnore *
# Exceptions (not working -> 500 internal error)
<Directory "/new/audio">
Options +Indexes
</Directory>
<Directory "/new/images">
Options +Indexes
</Directory>
但是整个站点无法正常工作,并出现内部服务器错误500 。