Been looking .htaccess files today and these may be helpful for protecting movie files:
Drop this at the root of your domain:
<-------- .htaccess code --------->
RewriteEngine on
AddHandler server-parsed .html
Options Indexes FollowSymLinks Includes
ErrorDocument 404
http://www.yourdomain.com/404.html
RewriteCond %{HTTP_REFERER} !^
http://www.yourdomain.com/404.html [NC]
RewriteCond %{HTTP_REFERER} !^
http://www.yourdomain.com/404.html [NC]
RewriteCond %{HTTP_REFERER} !^
http://www.yourdomain.com/404.html/ [NC]
RewriteCond %{HTTP_REFERER} !^
http://www.yourdomain.com/404.html/ [NC]
RewriteRule .*\.(gif|GIF|jpg|JPG|ram|RAM|mpg|MPG|mpeg|MPEG|wmv |WMV|avi|AVI|rm|RM|swf|SWF)$ - [F]
<-------- .htaccess code --------->