同一个空间 不同域名独立打开设置 http跳转https跳转的代码
粘贴到站点根目录下web.config或新建web.config文件中。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="301" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_FROM_HTTPS}" pattern="^on$" negate="true" />
<add input="{HTTP_HOST}" pattern="^(www.)?abc.com$" />
</conditions>
<action type="Redirect" url="https://www.abc.com/{R:1}" redirectType="Permanent" />
</rule>
<rule name="3012" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_FROM_HTTPS}" pattern="^on$" negate="true" />
<add input="{HTTP_HOST}" pattern="^(www.)?abcd.com$" />
</conditions>
<action type="Redirect" url="https://www.abcd.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
第一个红颜色的代码是abc.com域名跳转到https
第二个蓝颜色的代码是abcd.com域名跳转到https,您可以更改里面的域名进行使用,非常感谢您长期对我司的支持!