PDA

View Full Version : Blocking Hotlinking


DaveTomneyUK
06-08-2007, 06:21 PM
Hi,



Could someone please help me I am trying to make it so I store all my media files ".swf|.mp3|.wmv|.mpg|.mpeg|.jpg|.jpeg|.gif|.png" on a subdomain called "http://dl.mysite.com" but I need to make an .htaccess file so it blocks all referals to all my media files located on the subdomain "http://dl.mysite.com" so it allows only my domain to use the files.



Allow:

http://mysite.com
http://xx.mysite.com
http://dl.mysite.com


Disallow:

http://othersite.com
http://xx.othersite.com
http://dl.othersite.com

Dismounted
06-09-2007, 04:05 AM
RewriteEngine On

RewriteCond %{HTTP_REFERER} !^http://(.*)\.yoursite\.com/(.*)$ [NC]
RewriteRule .*\.(swf|mp3|wmv|mpg|mpeg|jpg|jpeg|gif|png)$ http://www.yoursite.com/ [R, NC]

DaveTomneyUK
06-09-2007, 09:31 AM
If I use that code I get an "500 Internal Server Error"