Quote:
Originally Posted by Mr Spock
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(www\.)?fotopiccanti.it [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} ^http://.*$
RewriteRule \.(jpe?g|gif|bmp|png)$ - [F]
|
The problem here is that:
RewriteCond %{HTTP_REFERER} ^http://.*$
matches any request that has a referrer. So, if the referrer is not from your site, and it is not blank, and it comes from any site, block the image.
Removing that one line will fix the problem.