How do i prevent streaming of files like .wmv and .mpg with htaccess and force visitors to right click and save as?
I tried this:
Code:RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://wwwDOTwebsiteDOTcom [NC,OR]
RewriteCond %{HTTP_REFERER} !^http://websiteDOTcom [NC]
RewriteRule [^/]+.(wmv|AVI|WMV|mpeg|MPEG)$ - [NC,F,L]
Left clicking shows a 403 forbidden but they can't get the file by right clicking neither.
Any tips?