Suchy Posted May 22, 2007 Share Posted May 22, 2007 I want to stop hotlinking to my mp3 files, except for few websites. hter is my .htaccess file RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mysite1.org(/)?.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://(www\.)?mysite2.org(/)?.*$ [NC] RewriteRule .*\.(flv|mp3)$ http://www.mp3site.com/thief.html [R,NC] So this works stoping people from clicking on a link to download a mp3 from my "mp3site.com" from sites not in the file. But this does not prevent from left-clicking and selecting "save target-as" on sites that are not in the htaccess file? What do I need to do to fix this ? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.