Forum Moderators: phranque
Welcome to WebmasterWorld!
> If I stop hotlinking to my sites images in htaccess does this also result in ie Google Images not picking-up those images anymore?
Yes and no, assuming you're talking about referrer-based anti-hotlinking code.
It won't affect Googlebot fetching the images and putting up thumbnails on the Google Image Search pages, because the Googlebot doesn't provide a referrer. So if you allow blank referrers --as you should-- then Gbot won't have a problem with this. However, if a potential visitor clicks on Google's "see full-size image" link, then the image request is sent to your server. The referrer, being images.google.com, would be subject to your referrer-based access controls.
The solution is to add images.google.com as a permissible hotlinker in your code.
Another aspect you might want to look at is, how do these visitors from Google Images convert? That is, if your site is commercial, do they buy much? Some webmasters report that conversions from G Images is very low, so you may not need to worry about this traffic anyway.
Jim
I just wanted a quick clarification on the behaviour of google images.
I currently have:
SetEnvIfNoCase Referer "^http://images\.google\..*(www\.)?mysite\.tld" good
From what I've read here and in other posts on this site,the Google image bot works off a blank referer so removing the above line would not affect it.
Would the framed "image in its original context" be affected, or is the referer in that case my site, so it still works?
Basically I'm thinking of removing the line to stop the "See full-size image." link and pass that through the custom 403 as well.