【发布时间】:2014-06-04 16:08:47
【问题描述】:
即使 index.html/php 存在,我如何定义 apache 虚拟主机以显示目录树?
【问题讨论】:
-
你的 Apache 版本是多少?
标签: apache virtualhost directoryindex directory-traversal
即使 index.html/php 存在,我如何定义 apache 虚拟主机以显示目录树?
【问题讨论】:
标签: apache virtualhost directoryindex directory-traversal
您必须启用Indexes 选项并删除DirectoryIndex 选项。
如果您启用了AllowOverride,您可以将以下内容添加到您的 .htaccess 文件中。
Options Indexes FollowSymLinks
DirectoryIndex disabled
如果您收到欢迎页面,您可能需要删除/编辑/etc/httpd/conf.d/welcome.conf。在 Red Hat 派生操作系统和其他操作系统上,这可能会干扰某些目录列表。
【讨论】: