asp.mvc 更改请求路径中的控制器名称
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够通过路由来完成此任务
You should be able to accomplish this with routing
是的,您可以修改 Global.aspx 文件中的重写规则。
Yes, you can modify the rewrite-rules in the Global.aspx file.