How can I form deeper url routes?
I want to have something like:
{controller}/{action}/{id}
and if a URL like
/Home/View/2008/Spring/Easter/Morning
I would like id = "2008/Spring/Easter/Morning" to be put into the ID. Currently I get a resource not found. I can't figure out how to express this in the route mapping. It could be N levels deep.
Any thoughts?