我在MVC 5.i中的项目想要handel 404 。我做到了,但问题是那个
当我使用以下URL访问视图时,一切正常并且符合预期:
http://localhost/Hotels/Index30701000000
但是当我使用以下URL访问视图时,出现404.0错误消息(错误如下所示)
http://localhost/Hotels/Edit/09099999dfdfb
http://localhost/Hotels/Edit/090/20130701000000
错误:HTTP错误404.0 - 未找到您要查找的资源已被删除,名称已更改或暂时不可用。
我的代码是
控制器
public class ErrorController : Controller
{
// GET: Error
public ActionResult Unauthorized()
{
Response.StatusCode = 404;
Response.TrySkipIisCustomErrors = true;
return View();
}
}
RouteConfig
routes.MapRoute(
name: "Unauthorized",
url: "Unauthorized/{action}/{id}",
defaults: new
{
controller = "Error",
action = "Unauthorized",
id = UrlParameter.Optional
}
);
Global.asax中
protected void Application_Error()
{
Exception exception = Server.GetLastError();
HttpException httpException = exception as HttpException;
}
webconfig
<system.web>
<customErrors mode="On" defaultRedirect="Error">
<error statusCode="404" redirect="Unauthorized" />
</customErrors>
</system.web>
查看 //Unauthorized.cshtml
@model System.Web.Mvc.HandleErrorInfo
@{
ViewBag.Title = "Unauthorized";
}
<h1>Page Not Found!</h1>
答案 0 :(得分:5)
另一种方法是在ErrorController中定义错误页面,然后在web.config中的system.WebServer下使用httpError部分。
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404" />
<error statusCode="404" responseMode="ExecuteURL" path="/Error/NotFound" />
<remove statusCode="500" />
<error statusCode="500" responseMode="ExecuteURL" path="/Error/Error" />
</httpErrors>
上面的代码是您可以测试自定义页面的。但是在您的开发环境中,您可以使用errorMode =“DetailedLocalOnly”和existingResponse =“Auto”替换Custom,这样您仍然可以看到详细信息错误。
我最近写了一篇关于它的帖子,它附带了一个可以在GitHub上使用的示例演示项目。 http://www.neptunecentury.com/Blogs/ASP-NET/MVC5/MVC-5-How-To-Show-Custom-Error-Pages
答案 1 :(得分:3)
只需在应用程序的global.asax文件中编写这些代码行。
protected void Application_EndRequest()
{
if (Context.Response.StatusCode == 404)
{
if ((!Request.RawUrl.Contains("style")) && (!Request.RawUrl.Contains("images")))
{
Response.Clear();
if (Response.StatusCode == 404)
{
Response.Redirect("/ControllerName/ActionName");
}
}
}
}