Thursday, December 27, 2007

Prohibit direct linking to your site

Sick of people direct linking images from your site ?

Put in .htaccess


This one would display the image owner.jpg :


RewriteEngine On
RewriteCond %{HTTP_REFERER} ^.*myspace.com.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|swf|png)$ http://www.site.be/images/owner.jpg [NC]

This one would block direct linking, at all :

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^.*myspace.com.*$ [NC]
ReWriteRule .*\.(gif|png|jpg|jpeg|swf)$ - [F]

No comments:

 Simple Python Calculator This script will allows your to calculate the integers given with the chosen operation. You can add, substract, mu...