为子域阻止https。由于我的子域没有安装ssl。默认情况下,显示https的子域错误,因为没有安装ssl,而该子域出错。如何防止对子域使用https。
我的web.config的https代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
rules>
<clear />
<rule name="Redirect to https" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
此代码对根域和子域均应用http。但是我的要求是仅针对根域。如何防止https在子域中应用默认设置。