MVC4中的双语404页面

时间:2017-02-16 11:04:00

标签: asp.net-mvc-4 http-status-code-404 multilingual

我跟着this answer找了一个有效的双语MVC4网站。我制作了404错误页面也是双语的,但是当我输入错误的链接时,要么转到英文版,要么显示MVC库存404页面。我尝试了很多解决方案,包括解决方案found here,但似乎没有任何帮助。

2 个答案:

答案 0 :(得分:0)

<强> Global.asax中

protected void Application_Error(object sender, EventArgs e)
        {
            // Do whatever you want to do with the error

            //Show the custom error page...
            Server.ClearError();
            var routeData = new RouteData();
            routeData.Values["controller"] = "Error";

            if ((Context.Server.GetLastError() is HttpException) && ((Context.Server.GetLastError() as HttpException).GetHttpCode() != 404))
            {
                routeData.Values["action"] = "Index";
            }
            else
            {
                // Handle 404 error and response code
                Response.StatusCode = 404;
                routeData.Values["action"] = "NotFound404";
            }
            Response.TrySkipIisCustomErrors = true; // If you are using IIS7, have this line
            IController errorsController = new ErrorController();
            HttpContextWrapper wrapper = new HttpContextWrapper(Context);
            var rc = new System.Web.Routing.RequestContext(wrapper, routeData);
            errorsController.Execute(rc);
        }

只需创建一个错误控制器并创建 NotFound404 查看您在上面输入的内容作为您创建的视图

它对我有用。

答案 1 :(得分:0)

成功地使它发挥作用。感谢@ r.vengadesh以及我在问题中提供的链接。无论如何,这里有文件和修改......

<强>的Global.asax:

protected void Application_Error(object sender, EventArgs e)
{
    Server.ClearError();
    var routeData = new RouteData();
    HttpContextBase currentContext = new HttpContextWrapper(HttpContext.Current);
    var culture = RouteTable.Routes.GetRouteData(currentContext).Values["culture"];
    routeData.Values["culture"] = culture;
    routeData.Values["controller"] = "Error";

    if ((Context.Server.GetLastError() is HttpException) && ((Context.Server.GetLastError() as HttpException).GetHttpCode() != 404))
    {
        routeData.Values["action"] = "Index";
    }
    else
    {
        Response.StatusCode = 404;
        routeData.Values["action"] = "page404";
    }
    IController errorController = new ErrorController();
    HttpContextWrapper wrapper = new HttpContextWrapper(Context);
    var rc = new System.Web.Routing.RequestContext(wrapper, routeData);
    errorController.Execute(rc);
}

RouteConfig:

public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "DefaultWithCulture",
            url: "{culture}/{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
            constraints: new { culture = new CultureConstraint(defaultCulture: "en", pattern: "[a-z]{2}") }
        );

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { culture = "en", controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

        // Catch-all route (for routing misses)
        routes.MapRoute(
            name: "Localized-404",
            url: "{culture}/{*url}",
            defaults: new { controller = "Error", action = "page404" },
            constraints: new { culture = new CultureConstraint(defaultCulture: "en", pattern: "[a-z]{2}") }
        );

        routes.MapRoute(
            name: "Default-404",
            url: "{*url}",
            defaults: new { culture = "en", controller = "Error", action = "page404" }
        );
    }
}

当然你需要有一个 ErrorController ,里面有一个page404。