Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the default that vs.net creates in a MVC app:

routes.MapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
        );

I also want to catch this route (any text after the domain name, but it can't contain a / in it i.e. no folders, just 'files' on the root).

www.example.com/blah
share|improve this question

1 Answer

This route will also match to the "www.example.com/blah" url, it will use the "blah" controller with the "Index" action.

If you want to create a specific route for "blah", you can also do that:

routes.MapRoute("BlahRoute",
  "blah/{action}/{id}",
  new { controller = "YourControllerForBlah", action = "Index", id = "" }
);

Just make sure that this route is added before the default, as otherwise the default route will match first.

You can check the ASP.NET MVC Storefront part 7, for some ideas for routing, and also ASP.NET Routing Debugger from Phil Haack.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.