我对 IIS 7.0 的 url 重写有很大的问题。
我为我的 NET3.5/IIS7 Web 应用程序编写了简单的重写模块。这是代码的一部分。
public void Init(HttpApplication context)
{
context.BeginRequest += new EventHandler(context_BeginRequest);
}
void context_BeginRequest(object sender, EventArgs e)
{
HttpApplication app = sender as HttpApplication;
if (app.Request.Path.Contains("pagetorewrite.aspx"))
HttpContext.Current.RewritePath("~/otherpage.aspx");
}
我在 web.config 中注册了我的模块:
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules>
<add name="MyModule" type="MyModule" preCondition="" />
在使用经典 ASP 管道的 IIS 7.0 (Vista) 下,它可以完美运行,但是当我将管道模式更改为集成时,它就会停止工作。调试器/事件/日志文件中没有异常、错误和任何内容 - 只有在浏览器中没有找到该页面的消息。最奇怪的是,页面名称看起来像是从原始页面的部分拼写错误或合并到重新写入的页面。
我已经在另一台计算机上部署了我的代码(也是 vista-but x64- 和 iis 7.0),它在两种模式下都能完美运行。看起来是配置问题还是什么?