For some reason I can't access the following file;
http://www.takuhii.co.cc/resources/css/images/bg.gif
I'm getting a 403, but there are no restrictions on that location...
Any one got any ideas?
For some reason I can't access the following file;
http://www.takuhii.co.cc/resources/css/images/bg.gif
I'm getting a 403, but there are no restrictions on that location...
Any one got any ideas?
The .htaccess in the root directory for that domain has this:
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
If I'm reading that, you've basically told it to forbid any jpg/jpeg/gif/png/bmp image on any url, which includes the resources/css/images/bg.gif directory.
To be honest I'm not 100% sure how to fix that as I'm not very good with .htaccess files, but if that is indeed the cause, a way to have it rewrite all images that AREN'T in that folder would be what you'd need.
TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!
If that rewrite rule does indeed exist, and you require it, you can shut off mod_rewrite for that particular /resources/css/images directory using "RewriteEngine Off" in a separate .htaccess (In that directory).
Cheers guys, must have missed that one...
I'll get that edited now ;)