I have a wordpress blog which tends to draw some traffic in Google Images...My impressions on Adsense dont add up and impressions on other ads not add up and i have read this is all cause of the people viewing images in Google Images... If i remember correctly i read somewhere that there is something you can do to stop where...Where the pictures will sill show up as thumbnails in Google Images but when the person clicks on the thumbnail the page will load for a second and then automatically load the actually website not in a frame. Am i correct about this or pulling out of my a*s? And if this is possible is it good to do this or is it bad in your opinion...Any info will help a lot, thank you for reading.
sounds like a good option if it is possible. I have a few sites that get some traffic from google images, it would be nice if it loaded my site instead of image.
1. If you want to break frame, use simple js code to break frame <SCRIPT LANGUAGE="JavaScript"> if (window != top) top.location.href = location.href; </SCRIPT> Code (markup): No disadvantage as far as I know. Yahoo has JS disabled, so code won't work on yahoo image search. 2. If you want people not to load only image when clicking thumbnail on framed page... Doable using your .htaccess RewriteEngine On # directory "imgs" where your images are - can change to whatever you want RewriteBase /imgs/ # if referer is google RewriteCond %{HTTP_REFERER} ^http:\/\/images.google.co # your php code convert.php will display images in html and then will do js redirect to full page RewriteRule ^(.*.)(gif|jpg|png)$ convert.php?img=$1$2 [L] Code (markup): Disadvantage is, google might ban you for showing different content to googlebot and user.
So by using a script like this to redirect people from the image to the article with that image is permited by Google ? I've just noticed a very big website using this. Take a look here, and press on an image to see what I'm talking about.