在安装目录中找到
wampbinapacheApache2.2.17confextrahttpd-autoindex.conf
文件,
打开进行修改,
将
Alias /icons/ “C:/Dev/Projets/WampServer2–64b/install_files_wampserver2/bin/apache/Apache2.2.17/icons/”
<Directory “C:/Dev/Projets/WampServer2–64b/install_files_wampserver2/bin/apache/Apache2.2.17/icons”>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
Directory>
修改为
Alias /icons/ “icons/”
<Directory “icons”>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
Directory>
上面用的相对目录,
因为在 httpd.conf 里面设置了
ServerRoot “D:/wamp/bin/apache/apache2.2.17″
或者用绝对目录也行.
wampbinapacheApache2.2.17icons
自由转载,转载请注明: 转载自WEB开发笔记 www.chhua.com
本文链接地址: WampServer2.2 localhost文件图标不显示解决办法 http://www.chhua.com/web-note2872
评论