Sorry if this is in the wrong forum, but I'm having some trouble with getting my .htaccess script to work. I want hotlinking to be disabled, so I put this on.
PHP Code:
<Files .htaccess>
order allow,deny
deny from all
RewriteEngine on RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?project-angel.com/.*$ [NC]
RewriteRule \.(jpe?g|gif|bmp|png)$ images/htaccess/hotlink.jpg [L]
</Files>
That's what I have, and it isn't working. Help please?