ASP.NET MVC 如何将请求映射到旧位置?
我刚刚开始一个从 webforms 到 asp.net mvc 2 的升级项目。在站点的根目录中有一个名为 resources.aspx 的文件,我需要从 mvc 拦截该文件。如果我开始一个新项目,如果我尝试访问 resources.aspx 但我创建了一个资源控制器,我会收到 404 错误。如何使控制器映射到/resources.aspx?
I've just started an upgrade project from webforms to asp.net mvc 2. There is a file called resources.aspx in the root of the site that I need to intercept from mvc. If I start a new project I get a 404 if I try to access resources.aspx but I have created a resources controller. How do I make the controller map to /resources.aspx?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在不创建控制器的情况下完成此操作。在RegisterRoutes中将其添加到routes.IgnoreRoute的正下方:
然后要使用它,您的URL将类似于 http://localhost/resources。
如果由于某种原因您需要控制器,那么您必须在 Index ActionResult 中重定向到它。
You could do this without creating a controller. Add this right below the routes.IgnoreRoute in RegisterRoutes:
Then to use it, your URL would be something like http://localhost/resources.
If for some reason you want the Controller then you will have to to redirect to it in the Index ActionResult.