How to prevent hotlinking of flv files?
- by Sarah
How to, using PHP and/or .htaccess prevent hotlinking?
There's a site, which is allowed to access the flv files located on my server, however I've noticed that there are many requests from other domains as well...
Here's the actual rule:
RewriteCond %{HTTP_REFERER} !^http://alloweddomain.com/.*$ [NC]
RewriteRule .flv denied.php [NC,L]
It's working OK except for Firefox, because FF is not sending referrer info when accessing .flv files...