htaccess / Norton question
Posted by: wowie
Posted on: 2007-10-13 20:16:00
I've managed to add a .htaccess file that manages to keep ~80% of users from seeing hotlinked files. In trying some test posts on some friends via a blog hosted elsewhere I've discovered the 20% that view the correct image file instead of the redirect are using Norton security. This is apparently due to whatever Norton does with the HTTP_REFERER lines (I'm no genius with this) from my research.
This is the file I'm using:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www.)?viggofanbase.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www.)?p208.ezboard.com(/)?.*$ [NC]
RewriteRule .*.(gif|jpg|bmp|png|mp3|mpg|avi|mov)$ http://viggofanbase.com/hotlink/viggofanbase.jpe [R,NC]
Options -Indexes
Is there a way to block the Norton users from viewing the hotlinked images unless of course they are looking directly at the site?