检测不存在的视图
我有一个新的 ASP.NET MVC 2 网站,它将取代旧的 php 网站。 我想确保如果使用任何旧的收藏夹,它会显示 404 未找到消息。我在 Web.config 中捕获了 404,当使用不正确的 url 时,该错误会起作用,例如(/Sales/MyView)。 但对于以下示例 (/Sales),即仅使用控制器名称而不使用操作时,它会返回应用程序错误。
有没有办法在这种情况下触发 404 错误以避免任何应用程序错误。
干杯, 安德鲁
I have a new ASP.NET MVC 2 Website which is going to replace an old php site.
I want to make sure that if any old favourites are used it will show a 404 not found message. I have trapped 404 in the Web.config which works when an incorrect url is used e.g. (/Sales/MyView).
But it returns an application error for the following example (/Sales), i.e. when only a controller name is used without an action.
Is there a way to trigger a 404 error in this senario to avoid any application errors.
Cheers,
Andrew
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 global.asax 中,您可以将 Sales 控制器的默认 MapRoute 指定为 404 页面。
In your global.asax, you can specify the default MapRoute for the Sales controller as your 404 page.