Quote:
Originally posted by Venom
My htaccess contains these lines:
RewriteCond %{HTTP_REFERER} bla-bla-bla\.com [NC]
RewriteCond %{HTTP_REFERER} !sexorgiescum\.com [NC]
and protection from hotlink
RewriteRule \.(gif|jpeg|jpg|mpeg|avi|mpg|mov)$ - [F,L]
Bla-Bla-Bla this is cheater
|
Try adding in this line above the first RewriteCond
RewriteCond %{HTTP_REFERER} !^$
This allows someone with no referral to access a movie, like a type-in.
Like this,
RewriteEngine on
RewriteOptions inherit
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com/.*$ [NC]