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

相关文章:

  • 2021-08-04
  • 2022-01-29
  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2021-05-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-30
  • 2022-12-23
  • 2021-12-08
相关资源
相似解决方案