我跟踪this answer寻找一个功能良好的双语MVC4站点。我做了404错误页,这也是双语,但当我输入一个错误的链接,它要么去英文版或它显示MVC股票404页。我尝试了许多解决方案,包括两种解决方案found here,但似乎没有任何帮助。
发布于 2017-02-16 14:43:22
成功地让它发挥作用。感谢@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。
发布于 2017-02-16 11:37:51
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视图--不管您在上面输入的视图是什么--
对我起作用了。
https://stackoverflow.com/questions/42272101
复制相似问题