Can't access a file

Status
Not open for further replies.

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
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.
 

Bryon

I Fix Things
Messages
8,149
Reaction score
101
Points
48
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).
 
Status
Not open for further replies.
Top