Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Everyone knows that:

www.example.com/city/new-york

is much better than:

www.example.com/city?id=43567

Fine, meaningful and human-readable. But how to deal with slug or not unique names (e.g. the city of Naples in both Italy and USA)?

What i mean is that when the user click on that link i should query the database for the city: i can't use the slug new-work as it's not unique and the function for calculating the slug is not invertible.

Question: should i store the slug in the database for the purpose of url generating or should i append the id after/before the city slug? Which method is better from SEO point of view? Does any other way exist?

www.example.com/city/43567/naples
www.example.com/city/naples-43567
share|improve this question

1 Answer

up vote 1 down vote accepted

Do what this website does and put the ID first and slug second. That way if the slug is lost or entered incorrectly the URL still works.

As far as SEO goes one isn't substantially better then the other.

share|improve this answer
You mean there is no difference between city/id/slug and city/slug/id or city/id-slug or city/slug-id? All should be the same SEO pov? Or i should avoid slashes? – user34295 Oct 5 '11 at 18:56
Slashes are just fine to use. In fact, they act as a delimiter and help make keywords stand out in your URLs. – John Conde Oct 5 '11 at 18:57
If shales = keywords than i will not put an id between them... thanks! – user34295 Oct 5 '11 at 18:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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