Hay guys, im making a simple car sale website. I have a nice little urlpattern which works well as expected
/car/1/
goes to a car with that id, simple?
However, for SEO reasons i want to add extra data to the URL, but ignore it.
/car/1/ford/focus
as an example, how would i go about modifying my patters to take the extra parts into consideration?
the 2 patterns would go to the same place and load up the same view.
Any ideas?