Quote:
Originally Posted by fris
i tried this via htaccess
direct link http://www.domain.com/video.flv (blocks it)
wget link (blocks it)
embed from a player on another server (blocks it)
download manager (blocks it)
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond {HTTP_REFERER} !^(http://(www\.)?domain\.com(/.*)?)?$ [NC]
RewriteRule \.(flv|mpg|wmv)$ - [NC,F,L]
|
Thats because your ruleset denies all requests without an HTTP_REFERER,
you are going to block a lot of legit requests with that.