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 ? Link to comment https://forums.phpfreaks.com/topic/52428-stop-hotlinking-of-mp3s/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.