Simply create an .htaccess file in the folder(s) you want to protect with the following content:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?www.(/)?.*$ [NC]
RewriteRule .*\.(avi|bmp|gif|jpeg|jpg|midi|mp3|mpeg|mpg|png|ra m|wav|wma|wmv)$ [F,NC]
This should prevent from anyone linking from the outside of your domain to your files.
|