I tried using this simple htaccess file in a directory I want protected...:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^
www.xyz.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^xyz.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^
www.xyz.com:80/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^xyz.com:80/.*$ [NC]
RewriteRule .*\.jpg$
http://www.go here if not xyz.com[R,L]
I'm getting the red x even when coming from xyz.com...
hep me hep me!!