View Single Post

  #1 (permalink)  
Old 29-03-2008, 11:53 PM
Briask's Avatar
Briask Briask is offline
Wannabe Geek
 
Join Date: Feb 2008
Location: Dublin
Posts: 140
Nominated 1 Time in 1 Post
TOTW/F/M Award(s): 0
Briask will become famous soon enough
Default Hot linking and how to stop it.

Have identified a site which is hotlinking to files on my site and passing it off as their own.

What rule(s) do I need in htaccess to redirect that specific site to an "info" page/pic?

Is the following sufficient?

Code:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?myspace\.com/ [NC,OR]
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpe [L]
Reply With Quote