As per this doc:
http://docs.joomla.org/How_do_you_block_direct_hot_linking_to_image_files_using_.htaccess
I am trying to ban specific domains from hotlinking using this:
But that's not working... Do I need to do something different in litespeed?
http://docs.joomla.org/How_do_you_block_direct_hot_linking_to_image_files_using_.htaccess
I am trying to ban specific domains from hotlinking using this:
Code:
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?myspace\.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?blogspot\.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?livejournal\.com/ [NC]
RewriteRule .*\.(jpe?g|gif|bmp|png)$ - [F]
Last edited by a moderator: