Get more Google Images Traffic Now

Some websites depend heavily on the images on their pages like celebrity blogs. They post about 20 to 30 photos on their posts, but none of the photos get indexed. Why? It ‘s a grey area what people know about Google Images and how their bot works. In this post, I would like to show you how to get your images indexed faster in Google Images and getting more traffic from indexed images.

First of all, most of you know that link building is the key to a high PR and therefore high traffic website. Google Images work in the same way! You need to get as much links with relevant anchor text to your images as possible. For example, using a script to get the last 5 posted images and place them with thumbnails on your toolbar will get you a lot of pages linking to that 5 recent images.

Also try posting your images on photo forums and link directly to your images. I know this will probably hurt you bandwith-wise, but it will really help your images get listed on Google Images.

Don’t name your images like my_image_name.jpg. Name them with “-” between words like my-image-name.jpg. This way Search Engine Bots, especially Googlebot, will recognize the image name as 3 different words. Another optimization would be using the keywords on the same paragraph of the image that is between the <p> and </p> tags.

Now lets get to the grey hat seo part. When you have your images listed on Google Images, people will look at the thumbnail and click it, getting to the 2 frame page with your website on the bottom. People searching for images on a certain niche can leave your site immediately if they think that your webpage is unrelated. We don’t want to take this chance and force the visitor to visit your blog by adding a couple of codes to your webpage.

Here is the javascript code the break the Google Image Search Frame from image results:

<script language=”JavaScript1.1″ type=”text/JavaScript”>
if (parent.frames.length > 0) top.location.replace(document.location);</script>

Now what you can do is to add a specific code to detect that the referrer is google images and display related images on that page. The PHP code to determine the referrer and the search keyword is:

$queryurl = $_SERVER[’HTTP_REFERER’];
$refer = parse_url($_SERVER[’HTTP_REFERER’]);
$refer= $refer[’host’];

if(strstr ($refer, ‘yahoo’)){
ereg(’p=(.*)’,$queryurl,$match);
}

else{
ereg(’q=(.*)’,$queryurl,$match);
}

$qstring = str_replace(’+’,’ ‘,$match[1]);

Now you have $qstring which is the image search keyword and $refer , which is the referring image search engine (most probably Googe Image Search). Now you can include a simple php page with file name “$qstring”.html containing related images to the $qstring. I am not going into details of writing the code to display related images, since it can depend on what kind of CMS you are running on your website.

About the Author

Turk Hit Box | Other Articles

Hi everyone. My name is Ant, and I am an author at Themeforest. Please don't forget to follow me on Twitter & Dribbble.

Discussion

  1. link says:

    thanks for this knowledge.i hope this is usefull my web site http://www.linkekimi.com 

  2. BubbleOnFire says:

    I have a new blog with lots of pics. I write description of the pic in the title but I don’t get google image traffic. Any ideas?

  3. colleen says:

    why on gods green earth you want to force somebody to visit your blog. I would hate that.

  4. i have another idea.
    maybe we can display a img file as a page not as an image.
    what do you think, is that possible, and if yes, how ?

    and thanks for the tips ! :)

  5. Nice tip on driving more traffic, and also making them know where the images are coming from.

  6. InterestingI had never thought the plainly simple ways a search engine like Google thinks. The thing is that it “indexes” your page abundant times, it takes a metric tonne of effort on your part to get your page to become intriguing to Google. I guess this just adds to my understanding of Google!

  7. I have a website with over 1000 images and unfortunatelly Google didn’t index any of them.

    I can see how direct linking from other sites to my images can really help index them.

    Thank you very much for the tip.