My site is written in php and has urls like this:

http://mysite.com/index.php?m=apple&f=show&t=hello-world

I want to change it to SEO friendly url.but i don't know which one is better:

http://mysite.com/apple/hello-world

or

http://mysite.com/apple/hello-world.html

would you help me?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 4 down vote accepted

I would not include the .html. It doesn't help your users at all. In general, if it is good for users it is good for SEO.

link|improve this answer
1  
+1 for "if it is good for users it is good for SEO" I wish more people thought like that, rather than "if it is good for SEO it's good enough". – Mike Jul 13 '11 at 7:49
feedback

Try to avoid extensions where possible, as they may change over time, and URIs should remain static. Think about old sites that use the .cgi extension, and then migrated to another system, such as PHP. Although HTML is likely to be around for a long time, it too may change.

See Cool URIs don't change for a good introduction.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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