1. 程式人生 > >虛擬主機中讓apache顯示目錄列表的配置方法

虛擬主機中讓apache顯示目錄列表的配置方法

在http.conf中加入如下程式碼(如有虛擬主機配置,加在虛擬主機配置段內,如:vhosts.conf),並把主目錄內的index.pho,index.html,index.htm檔案刪除

比如,下面是我的虛擬主機配置

<VirtualHost *:80>
    DocumentRoot "E:\WWW\test"
    ServerName test.test.com
    ServerAlias phpStudy.net
  <Directory "E:\WWW\test">
      Options FollowSymLinks ExecCGI Indexes
      AllowOverride All
      Order allow,deny
      Allow from all
      Require all granted
  </Directory>
</VirtualHost>
只需要在 Options項,後面加上Indexes(如果已經有其他配置,記得空格),就好了。

然後訪問首頁就會發現不會報錯了,而是顯示目錄結構了。


,當然生產環境下面不建議這樣做。