I am working on a new web site for used cars, lets say we have a page to display car details in this physical path (www.sitename.com/car-details.aspx) and its only needs a car-id parameter to grab car details in display.
I installed an URL forwording system like this
www.sitename.com/used/cars/{make-name}/{model-name}/{car-id}/{add-title}
www.sitename.com/used/cars/skoda/octavia/123456/car-for-sell-in-a-good-condition
my question is
what is the best structure for my urls (and why please), I have some examples:
less depth -
www.sitename.com/used-cars/{make-name}-{model-name}-{car-id}/{add-title}
with .html -
www.sitename.com/used/cars/{make-name}/{model-name}/{car-id}/{add-title}.html
without add-title -
www.sitename.com/used-cars/{make-name}-{model-name}-{car-id}
or somthing else..
note: all url parts can grab related data - for example
www.sitename.com/used/cars/ - will forward to a page contains all used cars
www.sitename.com/used/cars/{make-name}/ - will forward to a page contain all cars from this maker only
etc.. for all url parts.
Thanks