## 描述
~~~
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
~~~
options中Indexes表示當網頁不存在的時候允許索引顯示目錄中的文件

## 解決
將要設置的目錄對應配置參數下的Indexes刪除或者改為-Indexes(低版本可能會報錯)
~~~
<Directory "/var/www/html">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
~~~
或者
~~~
<Directory "/var/www/html">
Options -Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
~~~
