apache使某目錄下的檔案能夠列表顯示出來

weixin_34126215發表於2014-01-22

想要使web目錄下,某目錄下的檔案列表顯示而不是顯示"You don't have permission to access / on this server"

需要在httpd.conf檔案中加上下面的配置資訊,路徑可以是絕對路徑,最好它加在httpd.conf檔案的最下方,並註釋

<Directory "../htdocs/test">

Options Indexes FollowSymLinks
</Directory>

去掉"Indexes "的話,則會出現"You don't have permission to access / on this server"

相關文章