Loading
0

Discuz!Q论坛程序IIS7/IIS8/IIS10下web.config伪静态规则

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
开启伪静态有利于优化,Discuz!Q论坛程序IIS7/IIS8/IIS10下web.config伪静态规则 只需要在网站根目录下把以下规则保存为web.config文件就可以,如已经存在有web.config文件,则只需要把<rewrite></rewrite>及中间内容复制放到<system.webServer>下面
如下伪静态规则适用于Discuz!Q版本论坛程序

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="root_location_rewrite" stopProcessing="true">
                    <match ignoreCase="false" url="." />
                    <conditions logicalGrouping="MatchAll">
                        <add ignoreCase="false" input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add ignoreCase="false" input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action appendQueryString="true" type="Rewrite" url="index.php?{QUERY_STRING}" />
                </rule>
                <rule name="default_file_rewrite" stopProcessing="true">
                    <match ignoreCase="false" url="^$" />
                    <action appendQueryString="true" type="Rewrite" url="index.php?{QUERY_STRING}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-8-35968-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:IIS 管理服务 服务由于下列服务特定错误而终止: 无效签名。解决方法
下一篇:Discuz2x论坛程序IIS7/IIS8/IIS10下web.config伪静态规则