wamp目录索引图片不显示

在wampserver安装目录下  inapacheApache2.2.21confextrahttpd-autoindex.conf

Alias /icons/ "c:/Apache24/icons/"

<Directory "c:/Apache24/icons">
    Options Indexes MultiViews
    AllowOverride None
    Require all granted

将上面的路径该为自己当前安装的路径即可(我是在D盘)

Alias /icons/ "d:/wamp/bin/apache/apache2.4.9/icons/"

<Directory "d:/wamp/bin/apache/apache2.4.9/icons/">
    Options Indexes MultiViews
    AllowOverride None
    Require all granted

重启apache即可

原文地址:https://www.cnblogs.com/phpfensi/p/4506831.html