Hypothetical example, if I have a site about cars and let's say the url for a car is like:
http://www.example.com/cars/2007-ford-mustang
http://www.example.com/cars/2008-toyota-camary
And http://www.example.com/cars is a list of all cars. How should the url be to make, for example, a list of cars by country of manufacture?
http://www.example.com/cars/japanese
http://www.example.com/cars/bycountry/japanese
http://www.example.com/carsbycountry/japanese
http://www.example.com/bycountry/japanese
http://www.example.com/viewcars/bycountry/japanese
I like http://www.example.com/cars/japanese, but it seems strange to have "japanese" occupy the same "url space" as specific car node normally would. In other words, I feel the following URL's tend to imply that "2007-ford-mustang" and "japanese" are the same kind of thing.
http://www.example.com/cars/2007-ford-mustang
http://www.example.com/cars/japanese
Thoughts?