我正在尝试为我的网络应用程序设置自定义404错误页面。问题是该应用程序将部署到许多不同的环境中。有时它会在虚拟目录中,有时它不会。
我在名为ErrorPages的目录中有错误页面,并设置了我的配置:
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404"/>
<error statusCode="404" path="/VirtualDir/ErrorPages/404.aspx" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
问题是,当我将其部署到网站的根目录时,需要删除/VirtualDir
部分。如果我在部署之前删除它,那么我需要在部署到虚拟目录时重新添加它。有什么方法可以将路径设置为相对于虚拟目录而不是网站?
我尝试使用~
,但这也不起作用,如下所示:
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404"/>
<error statusCode="404" path="~/ErrorPages/404.aspx" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
答案 0 :(得分:4)
您可以使用 web.config 转换来设置每个环境的路径:
的web.config
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404"/>
<error statusCode="404" path="/VirtualDir/ErrorPages/404.aspx" responseMode="ExecuteURL" />
</httpErrors>
web.Release.config
<httpErrors>
<error statusCode="404" path="/ErrorPages/404.aspx" responseMode="ExecuteURL" />
</httpErrors>
答案 1 :(得分:2)
我遇到了类似的问题,所以我使用服务器端代码重定向到带有动态生成的URL(有或没有虚拟目录)的CustomError页面,尽管〜/成功重定向到这里的正确路径。
当应用程序Application_Error触发时发生错误并最终触发此代码块:
if (App.Configuration.DebugMode == DebugModes.ApplicationErrorMessage)
{
string stockMessage = App.Configuration.ApplicationErrorMessage;
// Handle some stock errors that may require special error pages
HttpException httpException = serverException as HttpException;
if (httpException != null)
{
int HttpCode = httpException.GetHttpCode();
Server.ClearError();
if (HttpCode == 404) // Page Not Found
{
Response.StatusCode = 404;
Response.Redirect("~/ErrorPage.aspx"); // ~ works fine no matter site is in Virtual Directory or Web Site
return;
}
}
Response.TrySkipIisCustomErrors = true;
Response.StatusCode = 404;
HttpContext.Current.ApplicationInstance.CompleteRequest();
}
您可以创建应用程序设置并在其中保存路径,而不是在web.config的httpErrors部分中编写页面路径。在后面的代码中,您可以从应用程序设置和重定向获取路径,如上所述。
我找到了另一个类似的链接,他解释得比我好,所以只是去吧 http://labs.episerver.com/en/Blogs/Ted-Nyberg/Dates/112276/2/Programmatically-configure-customErrors-redirects/