I want to have URLs like below in my ASP.Net website:
http://mysite/about http://mysite/faq http://mysite/bla
I don't want to have a controller each for them. Is there any way I can set up a default controller scheme so that if a controller with a suitable name is not found, it will hit the default controller.
Or is there an in-built feature in ASP.Net MVC which does this that I am not aware of.