views:

833

answers:

4

I need some explanation about my question.

Example on my header already added

<meta name="robots" content="noindex, nofollow" />

Should I add canonical tag again to my header?

<link rel=”canonical” href=”http://www.example.com/product.php?item=big-fish” />

Let me know :)

canonical tag

Update

we know canonical tag is currently also supported by google, yahoo and live search. How about noindex and nofollow? yahoo and live (bing) supported too?

+3  A: 

Not much point is there? The search engine isn't going to index your page anyway!

Though I suppose if you're ever going to want it indexed in the future then it would be good practice, though only if the same page content is being accessed via different URLs.

Jason Berry
A: 

You only need the 'canonical' tag if there is more than one way to address a page. For example, if 'http://www.example.com/products/big-fish' and 'http://www.example.com/product.php?item=big-fish' both point to the same page (ie. one is an alias for the other), use 'canonical'.

lacqui
So you put canonical on the page and then the search engine figures out which one to use?
David Andersson
In theory, if you have a page, http://www.example.com/foo and it has a canonical link to http://www.example.com/bar then search engine index entries for foo should be replaced by entries to bar, including pagerank etc.In practice, I don't know how well it works.
lacqui
+3  A: 

Since you're telling the crawler to not index and don't follow, I don't see why you should use a canonical.

You should use a canonical only if you have the same content under different URLs.

Nathan
+1  A: 

Google, Yahoo!, and Bing (Live) support noindex and nofollow in the meta directives.

noindex tells the search engines to not bother caching your page for inclusion in their results.

nofollow tells them that you don't want any of the links on the page to be followed.

Adding the canonical tag on the same page won't hurt, but effects are unknown unless you talk with one of the search engineers.

random