Does having multiple URIs mapping to the same resource help SEO?
- by Brian Wheeler
Let's say I have a site with products that have tags, if each resource is available at
GET '/products/tagged/:tag_list/:product_permalink'
Could that be better for SEO than just one permalink?
For example a product tagged "tea" and "coffee" would be available at
GET '/products/tagged/tea/:product_permalink'
GET…