asp.mvc 更改请求路径中的控制器名称

发布于 2024-10-10 22:37:53 字数 131 浏览 0 评论 0原文

在我的 MVC 项目中,我有一个名为 ProjectController 的控制器,在路径中它看起来像 /project。我想要“/proiect”的路径..有没有简单的方法可以在不重命名控制器类的情况下实现这一点?

谢谢, 拉杜

In my MVC project I have a controller names ProjectController and in path it looks like /project. I want to have the path for that "/proiect" .. is there any easy way to achieve that without renaming the controller class?

Thanks,
Radu

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

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

发布评论

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

评论(2

无远思近则忧 2024-10-17 22:37:53

您应该能够通过路由来完成此任务

routes.MapRoute(
    "Misspelling",
    "proiect/{action}",
    new { controller = "project", action = "index" }
);     

You should be able to accomplish this with routing

routes.MapRoute(
    "Misspelling",
    "proiect/{action}",
    new { controller = "project", action = "index" }
);     
只为守护你 2024-10-17 22:37:53

是的,您可以修改 Global.aspx 文件中的重写规则。

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

Yes, you can modify the rewrite-rules in the Global.aspx file.

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