如何在asp.net mvc路由中支持传统url(Web表单类型)
我们最近转向了 asp.net mvc,但我们仍然需要支持一些旧版 url。处理这种情况的最佳方法是什么。我需要使用 Global.asax 中的 Application_PreRequestHandlerExecute() 事件还是有更好的方法?
We have recently shifted to asp.net mvc, but we still need to support some legacy urls. What is the best way to handle this situation. Is it Application_PreRequestHandlerExecute() event in global.asax, that I need to use or is there any better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 URL IIS7 的重写模块。 Scott Hanselman 在此处发表了一篇关于使用 URL 重写来处理旧 URL 的好文章。
另一种选择,我相信您可以简单地添加与旧的 url 语法相匹配的路由。
You can use the URL Rewrite module for IIS7. Scott Hanselman has a good post on using URL rewrite to to handle legacy URLs here.
Another option, I believe you can simply add a route that matches your old url syntax.