I currently have a .htaccess file in my /images directory with the following code in it:
--------.htaccess.php------------
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^ [NC]
RewriteRule .(gif|jpg|bmp)$
The goal is to keep image thieves from linking to my images and using up my bandwidth.
The RewriteRule will point them to an image that reads a nasty note..
Recap:
.htaccess.php is in my image directory, in hopes of protecting all the images.
But when I test it by going to one of my other sites and linking an image from my original site, I can still link the image with no problem. I have rebooted my webserver also, and still no luck..
All help is appreciated..
--------.htaccess.php------------
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^ [NC]
RewriteRule .(gif|jpg|bmp)$
The goal is to keep image thieves from linking to my images and using up my bandwidth.
The RewriteRule will point them to an image that reads a nasty note..
Recap:
.htaccess.php is in my image directory, in hopes of protecting all the images.
But when I test it by going to one of my other sites and linking an image from my original site, I can still link the image with no problem. I have rebooted my webserver also, and still no luck..
All help is appreciated..