目录列表在apache中不可见

时间:2019-03-08 06:20:48

标签: httpd.conf

我在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文件的情况下,我们可以获得目录列表。

0 个答案:

没有答案
相关问题