I have the following code in a .htaccess file to try and prevent hotlinking of my flash file.
But its not working. Any idea about what is wrong?
Code:
RewriteEngine On RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?lostjungle\.com [NC] RewriteRule \.(swf|SWF)$ [URL="http://www.lostjungle.com/games/nohotlink.swf"]http://www.lostjungle.com/games/nohotlink.swf[/URL] [R,NC,L]
Comment