Quote:
Originally Posted by Bob_R
What are you talking about?
Is that supposed to represent an answer to my question?
I realize what this mod does. I use it and have for quite some time now.
So, it's YES you cannot hotlink images if you use this mod.
|
As it turns out, the question was different. You want to know if you can block hotlinking on your server. The answer is yes and it has nothing to do with this mod.
In order to block hotlinking you will have to add 3 (or more) lines in your .htaccess file, like:
Code:
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ - [F,NC]