Apache禁止目錄列表配置
2023-03-12 11:23 1051次
Alias /wwwroot/ "/var/wwwroot/"
Options Indexes FollowSymLinks
AllowOverride all
Require all granted
只需要將上面代碼中的 Indexes 去掉,就可以禁止 Apache 顯示該目錄結構。用戶就不會看到該目錄下的文件和子目錄列表了。Indexes 的作用就是當該目錄下沒有 index.html 文件時,就顯示目錄結構,去掉 Indexes ,Apache 就不會顯示該目錄的列表了。
如果啟用了rewrite,可以在對應的目錄下面的 .htaccess 文件中添加
<Files *>
Options -Indexes
</Files>