标签:new version ebs http 映射 enc net encoding color
在IIS5和IIS6时代,我们使用URL REWRITING可实现URL重写,使得WEB程序实现伪静态,但默认情况下只能实现.ASPX的伪静态,如果要实现伪静态*.HTML的页面,需要将ISAPI里面的*.HTML应用程序映射改为.NET的ISAPI。但在IIS 7时代,这一切已经变得非常简单了,您在WEB.CONFIG中就可以管理这一切了。
安装后如图:
可直接新建规则
也可以直接在WEB.CONFIG(项目目录根目录)中设置:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Rewrite to article.aspx"> <match url="^article/([0-9]+).html$" /> <action type="Rewrite" url="article.aspx?newid={R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
IIS URL 重写使用(Microsoft URL Rewrite Module)
标签:new version ebs http 映射 enc net encoding color
原文地址:https://www.cnblogs.com/qingsir/p/12516052.html