Server.Transfer 无法呈现 MVC 视图

发布于 2024-08-04 02:41:52 字数 399 浏览 7 评论 0原文

在我的 Application_Error 事件处理程序中,我想呈现 404 的 MVC 视图。由于 SEO,我不想重定向。

void Application_Error(...)
{
 if (serverException is HttpException && ((HttpException)serverException).GetHttpCode() == 404)
 {
  Server.Transfer("/error/404"); //*
 }
}

//* 失败,因为它无法在磁盘上找到路径。当然不是,因为它应该由 MVC 处理。

如何从 Application_Error 渲染 MVC 视图?

我不想重定向。

In my Application_Error event handler i want to render an MVC-View for 404. I do not want to redirect because of SEO.

void Application_Error(...)
{
 if (serverException is HttpException && ((HttpException)serverException).GetHttpCode() == 404)
 {
  Server.Transfer("/error/404"); //*
 }
}

//* Fails, because it cannot find the path on disk. Of course not because it should be handled by MVC.

How to render an MVC-View from Application_Error?

I do not want to redirect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凤舞天涯 2024-08-11 02:41:52

只是不要使用 Application_Error 来处理 404 错误。定义捕获所有路由:与

routes.MapRoute(
    "Error", 
    "{*url}", 
    new { controller = "Error", action = "Http404" });

其他路由不匹配的请求将由 Error 控制器的 Http404 操作进行处理。

Just don't use Application_Error to handle 404 errors. Define a catch all route:

routes.MapRoute(
    "Error", 
    "{*url}", 
    new { controller = "Error", action = "Http404" });

A request that doesn't match another route will be handled by the Http404 action of the Error controller.

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