电光石火-穿越时空电光石火-穿越时空


Emlog博客系统IIS 7/8伪静态

最近在论坛看到很多朋友的主机系统升级到IIS7或IIS8,所以伪静态规则不能用以前IIS6的。其实前一两年,很多国外的空间就升级到WIN2008,那时我有个网站也是折腾了半天才弄出来。

将下面的内容复制到记事本,保存为web.config放到网站根目录下。如果你的空间已经有了web.config,那么就只需要将下面<rewrite></rwrite>标签中的配置信息增加到你的web.config文件中的<system.webServer></system.webServer>配置段中即可。

以下为Emlog博客系统IIS7/IIS8伪静态规则,补充下记得删掉注视啊,提醒大家文件编码记得保存为UTF-8!


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="emlog-rewrite-file">(文章、日期、分类、作者、分页。)
                <match url="^(post|record|sort|author|page)-([0-9]+)\.html$" />
                <action type="Rewrite" url="index.php?{R:1}={R:2}" />
                </rule>
                <rule name="emlog-rewrite-folder">(同上,SEO设置里你懂的!)
                <match url="^(post|record|sort|author|page)/([0-9]+)$" />
                <action type="Rewrite" url="index.php?{R:1}={R:2}" />
                </rule>
                <rule name="emlog-rewrite-tag-file">(这里指的是标签)
                <match url="^tag-(.+)\.html$" />
                <action type="Rewrite" url="index.php?tag={R:1}" />
                </rule>
                <rule name="emlog-rewrite-tag-folder">(同上,SEO设置里你懂的!)
                <match url="^tag/(.+)$" />
                <action type="Rewrite" url="index.php?tag={R:1}" />
                </rule>
                <rule name="emlog-rewrite-twitter-file">(微语)
                <match url="^t/page-([0-9]+)\.html$" />
                <action type="Rewrite" url="t/index.php?page={R:1}" />
                </rule>
                <rule name="emlog-rewrite-twitter-folder">
                <match url="^t/page/([0-9]+)$" />(同上,SEO设置里你懂的!)
                <action type="Rewrite" url="t/index.php?page={R:1}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => Emlog博客系统IIS 7/8伪静态
本文地址:http://ilkhome.cn/index.php/archives/73/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 Emlog博客系统IIS 7/8伪静态,谢谢。

评论