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
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 ))
domain routing with asp.net mvc