
Originally Posted by
Stevie D
You don't want your internal search results pages appearing in Google's results – that just puts an extra barrier between your visitors and your website. They want to go straight to your page, not to a search results page where they then have to find the appropriate link (which may not be the top one).
I would recommend 'noindex'ing your search results pages, as opposed to disallowing them, because that still allows Google to follow the links within them.
I could create the results page similar to the Sitepoint Forum page with the title and either displayed or hovered page snippets...
but I prefer your suggestion of noindex,nofollow and have implemented with the following header script.
PHP Code:
<?php
$lFollow = 'jotd'==$this->uri->segment(1) || 'search'==$this->uri->segment(1);
$sFollow = ($lFollow) ? 'noindex,nofollow' : 'follow';
?>
<meta name="robots" content="<?php echo $sFollow;?>" />
I will monitor GWT's HTML Suggestions.
Many thanks
Bookmarks