IIS7.5使用web.config设置伪静态的二种方法
程序员文章站
2022-04-26 13:02:01
近几天公司里开发的项目有几个运行在iis7.5上,由于全站采用的是伪静态,因此从网上找到两两种方法来实现。这两种方法各有优势:第一种比较灵活,只要把文件拷到根目录下,即可直...
近几天公司里开发的项目有几个运行在iis7.5上,由于全站采用的是伪静态,因此从网上找到两两种方法来实现。这两种方法各有优势:第一种比较灵活,只要把文件拷到根目录下,即可直接显示所有伪静态页面(适用于此伪静态规则的所有项目,如thinkphp),无需更改代码;第二种适合有子目录时的伪静态,比如一个网站下有多个子网站且都要使用伪静态,那么就考虑使用第二种方法了,第一种会报错误。两种方法,自己根据情况使用吧(当然,并不是适用所有项目,可以根据项目的伪静态规则自行调整)。以下是代码:
第一种方法:web.config
复制代码 代码如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webserver>
<rewrite>
<rules>
<rule name="orgpage" stopprocessing="true">
<match url="^(.*)$" />
<conditions logicalgrouping="matchall">
<add input="{http_host}" pattern="^(.*)$" />
<add input="{request_filename}" matchtype="isfile" negate="true" />
<add input="{request_filename}" matchtype="isdirectory" negate="true" />
</conditions>
<action type="rewrite" url="index.php/{r:1}" />
</rule>
</rules>
</rewrite>
</system.webserver>
</configuration>
第二种方法:web.config
复制代码 代码如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webserver>
<rewrite>
<rules>
<rule name="规则 1" stopprocessing="true">
<match url="^includes/(.*)" />
<action type="rewrite" url="includes\/{r:1}" />
</rule>
<rule name="规则 2" stopprocessing="true">
<match url="^(blog)/includes/(.*)" />
<action type="rewrite" url="{r:1}/includes\/{r:2}" />
</rule>
<rule name="规则 3" stopprocessing="true">
<match url="^(blog)/(.*).html(.*)" />
<action type="rewrite" url="{r:1}/index.php\/{r:2}.html{r:3}" />
</rule>
<rule name="规则 4" stopprocessing="true">
<match url="^(.*).html(.*)" />
<action type="rewrite" url="index.php\/{r:1}.html{r:2}" />
</rule>
</rules>
</rewrite>
</system.webserver>
</configuration>
下面是补充:
iis 7和iis 7.5及以后的版本估计都会使用web.config来实现伪静态规则,于是我们以前的伪静态文件必须更改。网上找了一圈,还没有发现比较全面的web.config伪静态规则,于是我们这里整理一份,供初次使用的朋友参考。
实现普通页面、带一个数字参数页面和带两个参数页面的伪静态!
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webserver> <rewrite> <rules> <rule name="index" stopprocessing="true"> <match url="^index.html" /> <action type="rewrite" url="index.php" /> </rule> <rule name="rule1" stopprocessing="true"> <match url="^news_([0-9]+).html" /> <action type="rewrite" url="news.php?nid={r:1}" /> </rule> <rule name="rule2" stopprocessing="true"> <match url="news_list_([0-9]+)_([0-9]+).html" /> <action type="rewrite" url="news_list.php?nid={r:1}&page={r:2}" /> </rule> </rules> </rewrite> </system.webserver> </configuration>
iis 7.5通过web.config实现301重定向的方法,将不带www的域名转向到带www的域名上!
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webserver> <rewrite> <rules> <rule name="redirect" stopprocessing="true"> <match url=".*" /> <conditions> <add input="{http_host}" pattern="^chuangluo.com$" /> </conditions> <action type="redirect" url="http://www.chuangluo.com/{r:0}" redirecttype="permanent" /> </rule> </rules> </rewrite> </system.webserver> </configuration>
由于我们的网站使用了转义字符,因此在实际使用的时候,大家不可以直接复制以上代码。请复制粘贴到dreamweaver等编辑器后,使用替换功能把双引号全部替换为英文状态下的双引号,然后再修改rule标签内的内容就可以了,跳转的地方请更改为自己的网址即可。
需要注意的地方是以前httpd.ini和.htaccess支持网址中两个参数用&符号链接,在web.config中是不支持的,需要将这个符号更改为&才能正常使用。由于我们目前只有一台这种类型的服务器使用经验,有可能存在不足,如有更多更全面的资料,欢迎交流学习!
推荐阅读