What is the best way to match URL parameter spanning multiple "/" in ASP.NET MVC ?
Eg URL: http://example.com/controller/action/p1/p2/p3/p4
I want to pass just one parameter to the action method (above, it is "p1/p2/p3/p4"). Here, the parameter may have arbitrary number of subitems ( p1/.../pn ).
What is the best way to accomplish this? Any way to get this implemented using pure MVC routing?