2

我为我的网站设置了以下结构。(见下面的链接) http://postimg.org/image/ut4klihrp/

  • localhost:62540 进入核心的索引页面
  • localhost:62540/www/Home 进入万维网的索引页面
  • localhost:62540/cms/Home 进入cms的indec页面

我基本上希望“默认”路由(localhost:62540)进入我的 WWW 项目。我该怎么做,或者有人知道教程是解释这个原理的吗?或者这是不可能的,因为我使用区域方法。最终我想从核心项目中删除视图和控制器。

www 中的路由配置:

routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
            namespaces: new string[] { "WWW.Controllers" }
        );
4

1 回答 1

0

您可以在 中指定默认区域defaults

routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { area = "www", controller = "Home", action = "Index", id = UrlParameter.Optional },
    namespaces: new string[] { "WWW.Controllers" }
);
于 2013-07-10T12:25:49.490 回答