
(2015-10-07, 09:28 AM)sparkks Wrote: Remove the following line from your .htaccess: (the very last line)
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
I'm not sure what that is exactly.. but I'm not a master when it comes to rewrite rules.. but I do know that it is what's causing your issue.
(2015-10-07, 10:03 AM)SentoWeb Wrote:(2015-10-07, 09:28 AM)sparkks Wrote: Remove the following line from your .htaccess: (the very last line)
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
I'm not sure what that is exactly.. but I'm not a master when it comes to rewrite rules.. but I do know that it is what's causing your issue.
The "F" flag is causing this, the rewrite group in simple terms:
"If the request is not referred by this website, either the www or non-www version, and this is an image file do nothing with the request but send Forbidden header"
Should solve the issue, not sure what it's purpose is to be honest:
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [NC]
Removing the 'F' worked! Thank you both very much
