Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a product catalog with dynamic pages for the product detail pages in ASP. As well as the product ID there may or not be other parameters passed on; for instance, I could have a URL called mysite.com/product.asp?productId=1 and another link to the same product could be mysite.com/product.asp?productId=1&category=124&keyword=shoes.

I want to avoid content duplication so I am planning in adding a canonical tag dynamically generated, in the example above it would be

<link rel="canonical" href="http://www.mysite.com/product.asp?productId=1">

Is this the correct way to do it. I don't want Google to stop listing all products or only list the first one it has found because there is a canonical tag on the physical page product.asp.

share|improve this question

1 Answer

I guess the question you're actually asking is - "Does Google take into account querystrings in canonical tags?"

Happily, the answer is yes and your above implementation looks correct.

You want to siphon any dynamic "child" URL into the canonical URL using canonical tags as above to prevent duplication and sprawl.

share|improve this answer
Yes, this is correct, this is what I am asking, thank you for your response. – user1620090 Dec 21 '12 at 10:31
No problems. Accepting / uprating answers is the way to express thanks on this site! – Bob C Jan 3 at 17:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.