i hate hotlinkers
December 6, 2004
its a hotlinking herpes epidemic!
I'm a photographer based out of Anchorage, Alaska. I've recently become a wife, a stepmother, and a homeowner. Life is pretty awesome. You can email me anytime. Learn more...
Taking off my Getting Things Done For Serious hat or the night. 11 hours ago
So I like this tiny coffee mug, but the name reminds me of a menstrual cup. That might be a dealbreaker. http://t.co/CI50TkhI 11 hours ago
Wow gorgeous moonrise over the Chugach tonight. 13 hours ago
I have spent more time in my dentist's office in the last 6 months than I have in my entire life. So fed up. Switching this summer. 17 hours ago
Any recommendations for a nice 8oz (tiny!) travel coffee mug? @kaladibrothers? http://t.co/ifuX4kXs 21 hours ago
8 Comments
I hate it when people do that.
i need to keep up with my server logs to catch these sooner. or, really, i should prevent people from hotlinking them all together. and get myself out of google image search.
at least my own website isnt really safe for work anymore.
It's only happened to me twice, and that's when I stopped hotlinking in my .htaccess
I have them redirect to my "I'm a bandwidth stealing asshat" graphic.
http://cariadsrealm.com/asshat.jpg oops forgot the graphic link. :/
what .htaccess trick did you use? i tried using one a while back, but made it so that some people werent seeing any graphics on my site at all even though i allowed every version of my sites.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?bpparent.lissakay.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?designs.lissakay.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?globalaffairs.org/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?lissakay.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cariadsrealm.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cariadsrealm.net/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?lissakaytoo.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?bloglines.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?caiobaby.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?sharondippity.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?blogrolling.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?blog.cariadsrealm.net/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cariadsrealm.net/blog//.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cariadsrealm.net/journal//.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cariadsrealm.net/violet//.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?blog.sharondippity.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://cariadsrealm.com/asshat.jpg [R,L]
oh Lord, I just realized, I need to move mine to the appropriate directory, I no longer use /blog but /journal
There's probably a really simple PHP trick to eliminate hotlinking. I'll look around.
Leave a comment