ASP.NET MVC Routing for a Single Controller Site
问题 I'm trying to create a simple site. Basically it has one Controller Home controller. This controller has an action Index takes a string as argument (which is a directory) and uses that 'directory' to do its work. I can't work out how to create a generic catch all route that will send every URL to this one Action. Any URL combination could exist, and anything beyond the domain name should be the string. http://<domain>/2008 http://<domain>/2008/09 http://<domain>/2008/09/Fred Does anyone know