asp.net不用设置iis实现url重写 类似伪静态路由
程序要调整的部分只有两块。
一是web.config文件。
二是链接地址。
所需urlrewrite.dll
首先下载urlrewriter:http://download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/msdnurlrewriting.msi
下载安装后再bin目录下找到urlrewriter.dll文件
好了开始实施。
第一步:将urlrewrite.dll下载到你的web程序目录里去。哪都行。我是放在bin里面的。然后添加引用,将urlrewrite.dll引用进来。
第二步:修改web.config
这一步要修改几个地方。要注意位置是不同的
1 在web.config文件中加入如下代码,注意要放在<configuration>下面, <appsettings/>
<connectionstrings/> <system.web>上面不然会出错
<configsections>
<section name="rewriterconfig"type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
</configsections>
其中
<section name="rewriterconfig"
type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
用于指定配置节"rewriterconfig"的处理程序类的名称为”urlrewriter.config.rewriterconfigserializersectionhandler”,该类存在于bin目录下的urlrewriter.dll文件中
2 在web.config文件中的system.web节点下加入如下代码
<httphandlers>
<add verb="*" path="*.html"
type="urlrewriter.rewriterfactoryhandler, urlrewriter" />
<add verb="*" path="*"
type="urlrewriter.rewriterfactoryhandler, urlrewriter" />
</httphandlers>
这段代码的意思是:将文件扩展名为.html和任意扩展名(包括无扩展名,不包括*.html,因为这个位置在上面会先处理)的文件的所有 http 请求映射到类 urlrewriter.rewriterfactoryhandler,注意顺序,按从上到下执行,如果path="*"在上面的话,则下面的html映射则无效,下面步骤中有映射到那个页面的设置
3 重写url
和1一样 ,同样是放在<configuration>节点下面
关键就是
<rewriterconfig>
<rules>
<rewriterrule>
<lookfor>~/(.+).html</lookfor>
<sendto>~/shownews.aspx?showid=$1</sendto>
</rewriterrule>
<rewriterrule>
<lookfor>~/(.+)</lookfor>
<sendto>~/blog.aspx?username=$1</sendto>
</rewriterrule>
</rules>
</rewriterconfig>
效果:当访问http://127.0.0.1/123.html时,实际访问的是http://127.0.0.1/shownews.aspx?showid=123
访问http://127.0.0.1/任意字符时,实际访问的是http://127.0.0.1/blog.aspx?username=任意字符
注意第2,3步中的映射顺序
其中关键在url的转换
<lookfor>~/(.+).html</lookfor>
<sendto>~/shownews.aspx?showid=$1</sendto>
意思是把第一个路径转成另一个路径。其中<lookfor>()中的正则表达式就是第二句中的参数$1 .
同样也可以用$2 $3来表示<lookfor>中第二 第三个()中的参数。
多个参数:
<rewriterurls>
<rule>
<old>(.*)/testurlre/file(.*)/(.*)\.html</old>
<new>../webform1.aspx?id=$2&type=$3</new>
</rule>
<rule>
<old>(.*)/testurlre/t(.*)/(.*)\.html</old>
<new>../webform1.aspx?tid=$2&ttype=$3</new>
</rule>
</rewriterurls>
第三步:在页面程序中可以这样写:
<a href="news_<%=newsid%>.html" target="_blank">新闻标题</a>
完成上面三个步骤就可以轻松实现url重写了,不过需要注意的是:如果发布网站的话,你会发现你的url重写有可能会失效,如果失效的话就需要您设置一下iis:
打开iis,主目录-〉配置-〉映射-〉点击“插入”通配符应用程序映射-〉选择“c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll”,然后把勾选去掉(一定要去掉),然后确定。
上面设置完毕之后,就可以正常浏览了。
上一篇: Android打造属于自己的时间钟表
下一篇: R语言学习笔记