It could be that somehow the "player" is considered the referrer.
I found another example with a minus sign.
Code:
Options All
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ - [F]
But more importantly, I've also found an example that uses request uri
Code:
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?phpground\.net [NC]
RewriteCond %{REQUEST_URI} \.(mpg|mpeg|avi|wmv|mov|asf|zip)
RewriteRule .* - [F]
Maybe the URI syntax will work?
(gotta love trial and error huh? persistance eventually pays off
)
Bookmarks