仅针对域名的 MVC 路由

发布于 2024-12-09 08:58:09 字数 134 浏览 0 评论 0原文

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

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

此致, 可能。

I have MVC 3 application and I want to know how to set the domain name to route to specific controller and action (without specify them), e.g.
MyDomain.com to route to controller -> Landing, action -> landing.

The application is hosted on IIS 6.

Regards,
may.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜尕妞 2024-12-16 08:58:09

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

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

You want to change the parameter defaults in the default route in global.asax:

routes.MapRoute(
    "Default", // Route name
    "{controller}/{action}/{id}", // URL with parameters
    new { controller = "Landing", action = "Landing", id = UrlParameter.Optional } // Parameter defaults
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文