Reputation: 44066
I have this page and if you view the net tab in firebug you will see a 403 forbidden error on the images folder but I can see the image when I view it in firebug... Any ideas what maybe causing the issue? There is no htaccess in this directory... There is one in the folder above it but there is nothing that I see that stands out to be blocking that folder... Any ideas?
Upvotes: 0
Views: 1282
Reputation: 1436
This could be caused by apache configuration somehow, try putting .htaccess file containing:
<Directory path/to/dir>
order deny,allow
deny from all
</Directory>
And see what happens.
Upvotes: 2