检测不存在的视图

发布于 2024-11-05 15:44:55 字数 244 浏览 0 评论 0原文

我有一个新的 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 技术交流群。

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

发布评论

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

评论(1

¢蛋碎的人ぎ生 2024-11-12 15:44:55

在 global.asax 中,您可以将 Sales 控制器的默认 MapRoute 指定为 404 页面。

In your global.asax, you can specify the default MapRoute for the Sales controller as your 404 page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文