Software

禁止 Apache 顯示目錄結構列表

當點選一個目錄的時候會將所有的目錄結構都跑出來
這的時候只要修改設定檔裡面的 Options 就可以了

<Directory ""/var/www/html"">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

Options Indexes FollowSymLinks 將 Indexes 拿掉

<Directory ""/var/www/html"">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

然後重啟 apache 就可以了