我在httpd.conf
中有我的Directory指令,如下所示。
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
另一个目录条目如下。
<Directory E:\Apache2.2\htdocs>
Options Indexes FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
但是,当我访问http://localhost
时,没有看到目录列表,而是浏览器显示了index.html
文件的内容。如何在Web服务器的根文件夹上启用目录列表。 mod_autoindex
已启用。如果我删除index.html文件,那么只有我会得到目录列表。在不删除index.html文件的情况下,我们可以获得目录列表。