I have an Apache 2.2.21 server installed on my Windows 7 machine. My site is up and running my scripts from the /scripts subdirectory, but when I try to load icons from /icons , I get a forbidden error 403. I already added this to my httpd.conf file:
<Directory "c:/wamp/www/icons/"> Options Indexes FollowSymLinks Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
Still no effect. So the question is: how can I access the files in the /icons subfolder?
PS: Using the /images subdirectory designed just fine, but the question still remains.
source share