我正在尝试使用IIS为.net框架应用程序设置自定义错误(如果相关,则使用Visual Studio 2015构建。)我们的服务器是Windows Server 2012 R2。我已经查看了此问题的其他堆栈溢出解决方案,但没有解决它。我在Web配置和服务器管理器功能设置中设置了自定义错误。自定义错误页面的路径(是一个静态html页面)在服务器管理器中为所有错误状态代码设置。一些以前的堆栈建议禁用python所以我尝试了,但它没有解决任何问题。我的网络配置如下:
<?xml version="1.0"?>
<!--other web config-->
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</configSections>
<appSettings>
<add key="webpages:Version" value="3.0.0.0"/>
<add key="webpages:Enabled" value="false"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
<system.web>
<httpRuntime targetFramework="4.5"/>
<customErrors defaultRedirect="/Views/Home/customError.cshtml" mode="On"/>
<compilation debug="true"/>
</system.web>
<system.webServer>
<!--<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="500" subStatusCode="-1" />
<error statusCode="500" subStatusCode="-1" responseMode="ExecuteURL" path="/Views/Home/customError.cshtml" />
</httpErrors>-->
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<connectionStrings>
<add name="Entities" connectionString="***" providerName="System.Data.EntityClient"/>
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v12.0"/>
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
我在网络配置中没有看到任何重复的静态内容。我在应用程序的服务器管理器中直接添加了所有iis错误页面重定向。
当我在本地运行应用程序并尝试触发404错误时,我收到运行时错误:处理请求时发生异常。此外,执行第一个异常的自定义错误页面时发生另一个异常。请求已终止。 当我通过服务器运行它(也尝试触发404错误)时,它会加载到上一页。
我不确定如何解决这个问题。任何见解都会很棒!谢谢!
控制器的相关部分:
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Net;
using System.Net.Mail;
using BE.Models;
using BE.ViewModels;
namespace BE.Controllers
{
public class HomeController : Controller
{
private Entities db = new Entities();
// Uri Route: "~/Home"
// View Route: "/Views/Home/Index.cshtml"
public ActionResult Index()
{
return View();
}
// Route: "~/Home/customError"
// View Route: "/Views/Home/customError.cshtml"
public ActionResult customError()
{
return View();
}
public ActionResult About()
{
return View();
}
public ActionResult Contact()
{
return View();
}
public ActionResult Resources()
{
return View();
}
}
}
我还将global.asax.cs修改为:
namespace BE
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
RouteTable.Routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new {
controller = "Home",
action = "Index",
id = UrlParameter.Optional
}
);
};
};
然而,这给了我构建错误。
答案 0 :(得分:1)
在MVC中,可以重定向到将为页面提供服务的路由。这通常由控制器表示,而不是视图。除非视图是静态html页面。当您使用.cshtml
时,我假设您正在为MVC控制器提供内容。您的部分应如下所示:
<system.web>
<!-- Default redirect to the ErrorController index -->
<customErrors mode="On" defaultRedirect="~/Error">
<!-- Add any custom methods if you want for other error codes -->
<error redirect="~/Error/NotFound" statusCode="404" />
</customErrors>
</system.web>
另请注意,使用~/
表示该路径与应用根目录相对。
因此,请确保在您的控制器文件夹中有一个类如下:
public class ErrorController : Controller {
// Uri Route: "~/Error"
// View Route: "/Views/Error/Index.cshtml"
public ActionResult Index() {
return View();
}
// Route: "~/Error/NotFound"
// View Route: "/Views/Error/NotFound.cshtml"
public ActionResult NotFound() {
return View();
}
}
在Global.asx.cs
或路由在App_Start
文件夹中注册的位置,应该有这样的路由映射:
RouteTable.Routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new {
controller = "Home",
action = "Index",
id = UrlParameter.Optional
}
);
这应该与您给定的路线匹配到正确的控制器。