码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2017-03-08 16:16:58      阅读:486      评论:0      收藏:0      [点我收藏+]

标签:.config   window   config   等价   server   show   x64   match   mod   

1. 安装URL Rewrite模块

首先从官网下载安装URL Rewrite Module 2.0,下载页面

或者直接点击这里下载:

re_write_x86_zh_CN.msi from microsoft

re_write_x64_zh_CN.msi from microsoft
安装即可

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

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

标签:.config   window   config   等价   server   show   x64   match   mod   

原文地址:http://www.cnblogs.com/moogu/p/6519909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!