简体   繁体   中英

WampServer icons doesn't work

I've just installed WampServer 2.5, and scripts runs well. Only Wamp Icons doen't works. For example if I browse a folder project's, when Wamp lists files doesn't appear the icon, as show below:

esample

Trying to right click on an icon, in new tab opened appears the message:

Forbidden

You don't have permission to access /icons/unknown.gif on this server.

So in httpd.conf i've changed permission in directory / and c:/wamp/www/ , setting Require all granted . After this, now I've this error:

Not Found

The requested URL /icons/unknown.gif was not found on this server.

How can I pass right icons path to wampserver?

Thank you for reading.

  1. Uncomment the line Include conf/extra/httpd-autoindex.conf in httpd.conf file

  2. Make sure httpd-autoindex.conf file has this:

     Alias /icons/ "icons/" <Directory "icons"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> 
  3. Restart the server

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM