Quote:
Originally Posted by Flip
Is there any tips to stop hot linking from a web page?
Cheers

|
As mentioned, you need to use .htaccess, with this in it:
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.yourdomain.com [R,NC]