Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC Routing based on domain & hostname

I am new to ASP.NET MVC, most of my experience is on ASP.NET Webforms.

Is there a way to setup routing based on domain/hostname, i.e. www.domain.com goes to one area, admin.domain.com to another and www.differentdomain.com to yet another area all on the web application.

Also, is there a way to do a catch-all i.e. *.domain.com will be routed to another area?

like image 984
Vermaak Van Wyk Avatar asked Nov 19 '14 07:11

Vermaak Van Wyk


1 Answers

you can use Domain Routing mapping

routes.Add("DomainRoute", new DomainRoute( 
    "{customer}.example.com", // Domain with parameters 
    "{action}/{id}",    // URL with parameters 
    new { controller = "Home", action = "Index", id = "" }  // Parameter defaults 
))
like image 75
Laxmikant Avatar answered Nov 15 '22 07:11

Laxmikant