- Jan 4, 2001
 
- 41,596
 
- 20
 
- 81
 
My website is hosted at Gisol.com. I've tried a few .htaccess generators, such as something like this:
--------------------
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?jeff7.com(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.jeff7.com/~~~~~~hotlink.png [R,NC]
Options -Indexes
--------------------
Some problems then show up:
Hotlinked images here still work fine.
Hotlink htaccess tester - while the hotlinked images at the SHSPVR site work fine, this site will either show no image, or it will attempt to contact my server 10 or more times before giving up.
So it seems that this .htaccess is not quite doing the trick. Any ideas on what's going on?
My eventual goal: Prevent all hotlinking except to sites I specifically allow.
			
			--------------------
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?jeff7.com(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.jeff7.com/~~~~~~hotlink.png [R,NC]
Options -Indexes
--------------------
Some problems then show up:
Hotlinked images here still work fine.
Hotlink htaccess tester - while the hotlinked images at the SHSPVR site work fine, this site will either show no image, or it will attempt to contact my server 10 or more times before giving up.
So it seems that this .htaccess is not quite doing the trick. Any ideas on what's going on?
My eventual goal: Prevent all hotlinking except to sites I specifically allow.
				
		
			