View Single Post
Old 04-09-2010, 03:21 PM   #2 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

It's a form of hotlink prevention. Some people display alternate images, other people choose to redirect the culprits.

Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]
RewriteRule \.(gif|jpe?g|png)$ http://yourdomain.com/ [R=302,L]
delayedinsanity is offline  
Reply With Quote