MVC路由仅适用于域名

时间:2011-10-11 11:53:28

标签: asp.net-mvc-3 model-view-controller routing

我有MVC 3应用程序,我想知道如何设置域名以路由到特定控制器和操作(不指定它们),例如 MyDomain.com路由到控制器 - >着陆,行动 - >着陆。

该应用程序托管在IIS 6上。

此致 可能。

1 个答案:

答案 0 :(得分:0)

您想要在global.asax中更改默认路由中的参数默认值:

routes.MapRoute(
    "Default", // Route name
    "{controller}/{action}/{id}", // URL with parameters
    new { controller = "Landing", action = "Landing", id = UrlParameter.Optional } // Parameter defaults
);