How SEO friendly is this URL ?
Posted
by The_AlienCoder
on Stack Overflow
See other posts from Stack Overflow
or by The_AlienCoder
Published on 2010-04-25T14:27:31Z
Indexed on
2010/04/25
14:33 UTC
Read the original article
Hit count: 199
ASP.NET
|seo-friendly
I have this products catalog site.For the sake of SEO, I would have wanted my 'view details' link to look some thing like this
~/products/26-productname or ~/products/26/productname
On my machine I'm using a url re-writing module and it works well. Unfortunately My host(shared) does not support url re-writing modules or Aspnet 4.0 for now. So I came up with a workaround that attempts to be SEO friendly
Instead of this :
~/Products/details.aspx?id=26
I decided to simply append the product name in the url and i.e
~/Products/details.aspx?product=26-Toshiba Qosmio Notebook
So my question is how SEO friendly is such a URL and is my attempt worth anything at all?
© Stack Overflow or respective owner