如何在mvc中为Area添加子域?

时间:2016-10-25 04:53:40

标签: asp.net-mvc routes subdomain area

我有一个使用asp.net MVC的Web应用程序,并且有多个区域:

  
      
  • 本地主机
  •   
  • 本地主机/管理/家/索引
  •   
  • 本地主机/技术/家庭/索引
  •   

如何为此区域添加子域?例如:

  
      
  • 本地主机
  •   
  • admin.localhost /家/索引
  •   
  • admin.tech/home/index
  •   

1 个答案:

答案 0 :(得分:0)

// admin.localhost/home/index
    [RouteArea("Admin", Subdomain = "admin", AreaUrl="Home")]
    public class SubdomainWithAreaUrlController : Controller
    {

        public ActionResult Index()
        {
            return Content("");
        }
    }