Re: Some SEO feature and links questions
Posted: Thu Sep 15, 2011 1:47 pm
I'm not 100% confident on these answers, but I am confident enough to post a reply
1) Duplicate link
2) Duplicate link
3) No
Product.aspx (or whatever display page for products you are using) is used for every product in the store. You can call it multiple ways and provide a varying amount of parameters. These URLs:
http://www.site.com/product.aspx?ProductId=####&CategoryId=###,
http://www.site.com/product-name-P###.aspx,
http://www.site.com/product-name-P###C###.aspx,
http://www.site.com/customURL.aspx
all do the same thing -- product.aspx is loaded and given the parameters in the URL.
In the case of a custom URL, it is not a 301 redirect. A 301 redirect would mean your browser requested "http://www.site.com/customURL.aspx" and was told to go to "http://www.site.com/product.aspx?ProductId=####&CategoryId=###" instead. I don't think this is what AC does. With AC, I'm pretty sure it checks the URL against its list of redirects and loads the appropriate page, without your browser having to do anything else.
To see it in action, start changing the URL and see what loads. You'll notice that as long as the ProductId parameter is there (whether as ?ProductId=### or P###.aspx) AC will find the right product.
1) Duplicate link
2) Duplicate link
3) No
Product.aspx (or whatever display page for products you are using) is used for every product in the store. You can call it multiple ways and provide a varying amount of parameters. These URLs:
http://www.site.com/product.aspx?ProductId=####&CategoryId=###,
http://www.site.com/product-name-P###.aspx,
http://www.site.com/product-name-P###C###.aspx,
http://www.site.com/customURL.aspx
all do the same thing -- product.aspx is loaded and given the parameters in the URL.
In the case of a custom URL, it is not a 301 redirect. A 301 redirect would mean your browser requested "http://www.site.com/customURL.aspx" and was told to go to "http://www.site.com/product.aspx?ProductId=####&CategoryId=###" instead. I don't think this is what AC does. With AC, I'm pretty sure it checks the URL against its list of redirects and loads the appropriate page, without your browser having to do anything else.
To see it in action, start changing the URL and see what loads. You'll notice that as long as the ProductId parameter is there (whether as ?ProductId=### or P###.aspx) AC will find the right product.