我的本地主机上有一个404页面,效果很好。但是,当它被推送到Azure Web App时,却没有。
我最初通过Publish工具推送它,现在我使用从Github中的分支推送的内置功能。</ p>
我有以下 web.config :
<system.web>
<customErrors mode="On" defaultRedirect="~/Error/Index">
<error redirect="~/Error/NotFound" statusCode="404" />
<error redirect="~/Error/Index" statusCode="500" />
</customErrors>
<!-- More stuff :-) -->
</system.web>
<system.webServer>
这是我的错误控制器:
public class ErrorController : Controller
{
public ViewResult Index()
{
return View("Error");
}
public ViewResult NotFound()
{
Response.StatusCode = 404;
return View("NotFound");
}
}
我的生产web.config转换文件根本没有改变(请参阅注释中的内容):
<?xml version="1.0"?>
<!-- For more information on using Web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=301874 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!--
In the example below, the "SetAttributes" transform will change the value of
"connectionString" to use "ReleaseSQLServer" only when the "Match" locator
finds an attribute "name" that has a value of "MyDB".
<connectionStrings>
<add name="MyDB"
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>
-->
<system.web>
<compilation xdt:Transform="RemoveAttributes(debug)" />
<!--
In the example below, the "Replace" transform will replace the entire
<customErrors> section of your Web.config file.
Note that because there is only one customErrors section under the
<system.web> node, there is no need to use the "xdt:Locator" attribute.
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
-->
</system.web>
</configuration>
然而,虽然我的404页面在localhost中运行得很好,但在生产中我得到:
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
而不是漂亮的404页面。
有什么想法吗?
答案 0 :(得分:3)
我的本地主机上有一个404页面,效果很好。但是,当它被推送到Azure Web App时,它不会。
我使用了您的代码并重现了您的结果。
我在web.config中将<httpErrors existingResponse="PassThrough" />
添加到<system.webServer> </system.webServer>
,然后就可以了。
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ApplicationInsightsWebTracking" />
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
</modules>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
您可以参考此article了解详情。