最新公告
  • 新添加WordPress仿站助手小工具,方便大家开发制作WP模板的利器 . Wordpress标签生成器
  • IIS7配置web.config,http重定向到https,不带www转向www域名规则

    正文概述 仿站吧   2023-02-07 03:59:18  
    IIS7配置web.config,http重定向到https,不带www转向www域名规则

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <rewrite>
                    <rule name="HTTP to HTTPS redirect" stopProcessing="true">
                        <match url="(.*)" />
                        <conditions>
                            <add input="{HTTPS}" pattern="^OFF$" />
                        </conditions>
                        <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
                    </rule>
                    <rule name="不带www转向www域名规则" stopProcessing="true">
                        <match url="(.*)" />
                        <conditions logicalGrouping="MatchAll">
                            <add input="{HTTP_HOST}" pattern="^kaifatu.com$" ignoreCase="false" />
                        </conditions>
                        <action type="Redirect" url="https://www.kaifatu.com{R:1}" redirectType="Found" />
                    </rule>
                </rules>
            </rewrite>
        </system.webServer>
    </configuration>
    仿站吧,一个优质的源码资源平台!
    仿站吧 » IIS7配置web.config,http重定向到https,不带www转向www域名规则