当前位置:首页 > 服务器技术 > IIS

URL重写 httpModules IIS7

<system.web>
<httpModules>
<!--URL重写:IIS 6 及以下用次处配置-->
<!--add name="MyHttpModule" type="Web.MyHttpModule,Web"/-->
</httpModules>
<compilation debug="true"/>
</system.web>
<system.webServer>
<modules>
<!--URL重写:IIS 7 及以上用此处配置-->
<add name="MyHttpModule" type="Web.MyHttpModule,Web"/>
</modules>
</system.webServer>

原文:http://www.cnblogs.com/ayxiaopan/p/3865920.html


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!