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?

link|improve this question

Either rewrite your app using asp.net MVC or get a new host. – mxmissile Apr 25 '10 at 14:36
This is not really programming related. – Gumbo Apr 25 '10 at 14:36
Changing hosts is not possible currently. Thats why I was looking for an alternative using the few options I had. – The_AlienCoder Apr 25 '10 at 14:39
Satisfied with the answer? – Jakob Kruse Apr 26 '10 at 17:16
feedback

2 Answers

up vote 4 down vote accepted

It doesn't really make a difference to search engines if you use just a number or a number and a string, but you should make sure that the parameter is recognized correctly:

http://googlewebmastercentral.blogspot.com/2009/10/new-parameter-handling-tool-helps-with.html

link|improve this answer
Thanks. I have a better understanding now. – The_AlienCoder Apr 26 '10 at 18:34
feedback

IMO - your URL should read as:

/products/toshiba-qosmio-notebook/

or

/products/26/

and in both cases should point to the same resource. This is more SEO than the link you provided with the query parameters as it points to a resource URI rather than a URL as in your code.

If your host does not support url-rewrite, perhaps it is time to move to a different host who supports this...

HTH

link|improve this answer
Ideally that is what I would have wanted but kind of locked to my host for the next couple of months. – The_AlienCoder Apr 25 '10 at 14:42
The trouble is when you postback a page, IIS needs a URL, so I think if you cannot do URL-rewrite, you will need to go to the details.aspx?product= route. In my last project since we had a very small list of products, we were able to create a sub-folder per product & set in IIS that each folders default page as "default.aspx" so when the user could browse by URI, but POSTed to the uri/default.aspx and at the end of the POST processing we would redirect him to the URI. But, our product list was just 3 & never expected to change & so was somewhat manageable. – Sunny Apr 25 '10 at 14:54
feedback

Your Answer

 
or
required, but never shown

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