显示一个404未找到的网页.. NET Core MVC
本文关键字:网页 NET MVC Core 一个 显示 | 更新日期: 2023-09-27 18:04:32
我使用下面的中间件来设置HTTP状态码400到599的错误页面。因此访问/error/400
显示400 Bad Request错误页面。
application.UseStatusCodePagesWithReExecute("/error/{0}");
[Route("[controller]")]
public class ErrorController : Controller
{
[HttpGet("{statusCode}")]
public IActionResult Error(int statusCode)
{
this.Response.StatusCode = statusCode;
return this.View(statusCode);
}
}
但是,访问/this-page-does-not-exist
会导致一个通用的IIS 404 Not Found错误页面。
是否有办法处理不匹配任何路由的请求?在IIS接管之前,我如何处理这类请求?理想情况下,我想将请求转发给/error/404
,以便我的错误控制器可以处理它。
在ASP。在asp.net 4.6 MVC 5中,我们必须在Web中使用httpErrors部分。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404" />
<error statusCode="404" responseMode="ExecuteURL" path="/error/404/" />
</httpErrors>
</system.webServer>
</configuration>
我找到的最好的教程之一是:https://joonasw.net/view/custom-error-pages
摘要在这里:
1。首先添加一个控制器,如ErrorController
,然后添加以下操作:
[Route("404")]
public IActionResult PageNotFound()
{
string originalPath = "unknown";
if (HttpContext.Items.ContainsKey("originalPath"))
{
originalPath = HttpContext.Items["originalPath"] as string;
}
return View();
}
注意:您可以将动作添加到另一个现有的控制器,如HomeController
。
2。现在添加PageNotFound.cshtml
视图。像这样:
@{
ViewBag.Title = "404";
}
<h1>404 - Page not found</h1>
<p>Oops, better check that URL.</p>
3。重要的部分在这里。将此代码添加到Startup
类中,在Configure
方法中:
app.Use(async (ctx, next) =>
{
await next();
if(ctx.Response.StatusCode == 404 && !ctx.Response.HasStarted)
{
//Re-execute the request so the user gets the error page
string originalPath = ctx.Request.Path.Value;
ctx.Items["originalPath"] = originalPath;
ctx.Request.Path = "/error/404";
await next();
}
});
注意,它必须在路由配置如app.UseEndpoints...
之前添加。
基于此SO项,IIS在到达UseStatusCodePagesWithReExecute
之前获得404(并因此处理它)。
你试过这个吗:https://github.com/aspnet/Diagnostics/issues/144?它建议终止收到404的请求,这样它就不会去IIS处理。下面是要添加到Startup中的代码:
app.Run(context =>
{
context.Response.StatusCode = 404;
return Task.FromResult(0);
});
这似乎是iis独有的问题。
你可以在asp.net core的EndPoint中使用fallback,就像下面(在app.UseEndpoints中)和razor页面(NotFound是pages文件夹中的razor页面而不是控制器)
endpoints.MapRazorPages();
endpoints.MapFallback( context => {
context.Response.Redirect("/NotFound");
return Task.CompletedTask;
});
在处理500和404错误几个小时后,我已经实现了下面给出的解决方案。
对于处理500
服务器端错误,您可以使用app.UseExceptionHandler
中间件,但app.UseExceptionHandler
中间件只处理未处理的异常,而404
不是异常。对于处理404
错误,我设计了另一个自定义中间件,它正在检查响应状态代码,如果它是404
,则返回用户到我的自定义404
错误页面。
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
//Hnadle unhandled exceptions 500 erros
app.UseExceptionHandler("/Pages500");
//Handle 404 erros
app.Use(async (ctx, next) =>
{
await next();
if (ctx.Response.StatusCode == 404 && !ctx.Response.HasStarted)
{
//Re-execute the request so the user gets the error page
ctx.Request.Path = "/Pages404";
await next();
}
});
}
注意:你必须在你的Configure
方法的开始添加app.UseExceptionHandler("/Pages500");
中间件,这样它可以处理来自所有中间件的异常。自定义中间件可以放在app.UseEndpoins
中间件之前的任何ware,但是最好放在Configure
方法的开头。/Pages500
和/Pages404
url是我的自定义页面,您可以为您的应用程序设计。
Asp.net核心3.1和5
在你的HomeController.cs
:
public class HomeController : Controller
{
[Route("/NotFound")]
public IActionResult PageNotFound()
{
return View();
}
}
in Startup.cs
>ConfigureServices
方法:
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.Use(async (context, next) =>
{
await next();
if (context.Response.StatusCode == 404)
{
context.Request.Path = "/NotFound";
await next();
}
});
app.UseHttpsRedirection();
app.UseStaticFiles();
}