Displaying 1 result from an estimated 1 matches for "the_audio_file".
2007 Feb 22
4
Modifying Apache Conf To Block Leachers
...ondering if someone
else has any suggestions on getting this to work... I would expect
this to send the user to error.html if the referrer is not the site
in question but nothing at all happens...
Any suggestions appreciated, this stuff drives me batty.
URL: http://www.mysite.com/audio_file/the_audio_file/file.mp3
RewriteCond %{REQUEST_FILENAME} .*mp3$ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !mysite\.com [NC]
RewriteCond %{HTTP_REFERER} !friendlysite\.com [NC]
RewriteCond %{HTTP_REFERER} !google\. [NC]
RewriteCond %{HTTP_REFERER} !search\?q=cache [NC]
RewriteRule (.*) /erro...