我有一个在经典管道模式下运行.NET 4.0的IIS 7.5网站。
我创建了一个简单的默认图像设置,如果调用图像但物理文件不存在,则使用Application_BeginRequest
事件中的以下代码将请求重定向到默认图像:
protected void Application_BeginRequest(object sender, EventArgs e)
{
if (Request.PhysicalPath.EndsWith(".jpg") && File.Exists(Request.PhysicalPath) == false)
{
Context.RewritePath("~/images/nophoto.jpg");
}
}
这在我的VS2010开发服务器上工作正常,但是在生产环境中,没有为JPG请求调用Application_BeginRequest事件,而我得到的只是标准HTTP错误404.0 - 未找到错误。
我已尝试将Web.Config中的runAllManagedModulesForAllRequests
选项设置为true,但这似乎没有帮助:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"></modules>
</system.webServer>
根据我的理解,这会导致所有请求都通过.NET,从而触发Application_BeginRequest事件?
期望的结果:
我希望所有请求都通过.NET,以便为JPG调用Application_BeginRequest事件,如果没有找到图像则返回默认图像。