Forum Moderators: Robert Charlton & goodroi
Google Images' New (Bing-like) Layout
[edited by: Robert_Charlton at 6:16 pm (utc) on Feb 4, 2013]
[edit reason] examplified domain [/edit]
what do you think about that?
hopefully see a solution via a script to prevent that google can hotlink the images.
<Files ~ "\.(png|jpe?g|gif)$">
Header set X-Robots-Tag "noindex"
</Files>
[edited by: Robert_Charlton at 6:28 pm (utc) on Feb 4, 2013]
[edit reason] no specifics [/edit]
both did not prevent the images to be hotlinked by google for me =/
RewriteCond %{HTTP_REFERER} bing [NC]
RewriteRule .*\.(jpe?g|gif|bmp|png)$ - [F]
RewriteCond %{HTTP_USER_AGENT} BingPreview
RewriteRule .*\.(jpe?g|gif|bmp|png)$ - [F]
RewriteCond %{HTTP_REFERER} ^http://.*images/.google.*$ [NC]
RewriteRule .*\.(jpe?g|gif|bmp|png)$ http://mywebsite\.com [R]
[edited by: Robert_Charlton at 9:17 am (utc) on Feb 3, 2013]
This sorta says to me that unless you block all blank referrers, which could have some unintended consequences, there isn't any way to intercept those requests.
I don't know through what voodoo, but Google is showing images from by image folders that is blocked to its bot, following its own instructions!
If it can be done, g### can find a way to override it.