Featured Posts

How to get SMS delivery reports on iPhone 3G 3Gs or... Since I received my new iPhone 3G, I've been wondering why Apple didn't add an option for text message delivery reports to the iPhone 3G software (SMS delivery reports). Sometimes when you send a text...

Read more

A Simple System to Reorganise Your Emails After a Getting Things Done micro-seminar given by a friend, I took it upon myself to start learning about, and introducing, GTD into my life. I’m not an expert but a few simple changes have made a huge...

Read more

iPhone EDGE settings for Vodafone UK Well my unlocked iphone has finally arrived from the US, and I've been tweaking it for the last couple of hours so that everything is working properly. When I tried to fire up Safari on the iPhone I...

Read more

SEO and Wordpress Archive Pages

Posted by thinkjim | Posted in blogging | Posted on 01-06-2008

0

Since moving from blogger to wordpress I have been spending a lot of time working on Search Engine Optimisation (SEO), so that my blog ranks highly. SEO can take a lot of time and I’m still in the early stages, but something I have discovered is that google has been indexing my archive pages.

The problem with this is that google sees these archive pages as duplicate content. For example http://www.thinkjim.com/2005/09/ contains a post about a microsoft windows training course, but this post is also a web page in its own right (http://www.thinkjim.com/2005/09/m2276-implementing-a-microsoft-
windows-server-2003-network-infrastructure.html). This counts as duplicate content and can effect your google pagerank.

To get around this i’ve learnt that you need to stop google indexing the archive pages and this can be achieved by adding a line of code to the header.php file – this forms part of your wordpress theme.

<?php if(is_archive()){ ?><meta name="robots" content="noindex, follow"><?php } ?>

If you put the line of code above into your header.php file it will tell google (and other search engines) not to index any pages that are archive pages, but the search engine will look inside archive pages for links to other pages (i.e. posts). If it finds a link it will follow it and index the linked page.

Bookmark and Share

Write a comment