its a hotlinking herpes epidemic!
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.