如何重定向http://www。到https://www。状态码301没有代码302?
答案 0 :(得分:0)
您需要在web.config中添加URL重定向代码,并将重定向类型设置为permanent(301)
<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>
在web.config
中的配置标记下添加此项