Windows 2008 R2上配置IIS7或IIS7.5中的URLRewrite(URL重写)实例

1. 安装URL Rewrite模块

2、URL Rewrite模块配置实例

2.1、在web.config中添加如下节点

<system.webServer>
<rewrite>
<rules>
<rule name="NEWS">
<match url="^N(d+).html$"/>
<action type="Rewrite" url="/ShowNews.aspx?ID={R:1}"/>
</rule>
</rules>
</rewrite>
</system.webServer>

配置结果:
地址栏中输入下面两个网址是等价的:
http://yourdomain/N123456.html
http://yourdomain/ShowNews.aspx?ID=123456
原文地址:https://www.cnblogs.com/sky6699/p/7091110.html