作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在本地机器上使用 wamp server 3。每当我创建一个虚拟主机时,我必须提供至少一个 index.php
文件来访问我的项目目录,没有它我会收到 404
错误。
但我也想在不提供 index
文件的情况下访问我的项目目录。当服务器找不到索引文件时,我喜欢查看目录列表。如下图:
我认为问题出在我的 httpd-vhost.conf
文件中。这是我要启用目录列表的目录的虚拟主机配置:
<VirtualHost *:80>
ServerName virtualhost.info
DocumentRoot c:/wamp64/www/virtual_host_test
<Directory "c:/wamp64/www/virtual_host_test/">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
我们将不胜感激。
最佳答案
找到一个解决方案。
默认情况下,New Wamp 禁用 Fancy 目录列表。
编辑 C:\wamp64\bin\apache\apache2.4.17\conf\httpd.conf
需要加载这个模块(去掉#)
LoadModule autoindex_module modules/mod_autoindex.so
需要加载这个conf(去掉#)
Include conf/extra/httpd-autoindex.conf
引用链接:WAMP is not displaying the icons in the directory listing
谢谢
关于php - 如何在 WAMP Server 3 的虚拟主机中启用目录列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36364539/
我是一名优秀的程序员,十分优秀!