ASP.NET MVC 1.0 Areas
Areas (or grouping controllers into subsections of a site) are planned for ASP.NET MVC 2.0, but in the meantime there is a way to get this working with the current release.
Phil Haack’s nice area prototype hasn’t been updated since the release candidate of ASP.NET MVC, but it still works with version 1.0 by following his . . .
Subdomains for a single application with ASP.NET MVC
Update: Complete source code demonstrating this approach is available on MSDN Code Gallery for MVC1 and MVC2.
I’ve wanted to use subdomains for sub-sites within a single application for a while now, the way you see the Rails guys doing all the time (e.g. 37 signals, Shopify and LessEverything). Basically, instead of setting up . . .