Azure web.config 永久重定向并获取 307 状态代码而不是 301
Azure web.config Permanent redirection and get 307 status code instead of 301
我正在尝试将所有 http 流量重定向到 https,同时返回 301 状态代码。出于某种原因,我得到了 307 状态,我不知道为什么。我试图搜索以查看我是否遗漏了配置中的某些内容,但它似乎与我看到的所有内容都相似。
我的web.config
<rewrite>
<rules>
<rule name="ForceWWW" stopProcessing="true">
<match url=".*" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^MY_DOMAINE" />
</conditions>
<action type="Redirect" url="https://www.MY_DOMAINE/{R:0}" redirectType="Permanent" />
</rule>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
<outboundRules>
<rule name="Add Strict-Transport-Security when HTTPS" enabled="true">
<match serverVariable="RESPONSE_Strict_Transport_Security" pattern=".*" />
<conditions>
<add input="{HTTPS}" pattern="on" ignoreCase="true" />
</conditions>
<action type="Rewrite" value="max-age=31536000" />
</rule>
</outboundRules>
</rewrite>
更新
我刚刚发现了一些有趣的东西。例如我的域名是 domaine.com
如果我搜索:
domaine.com重定向为301
http://www.domaine.com重定向为307
www.domaine.com重定向是307
更新
我只遇到 Chrome 的问题。其他浏览器具有重定向的 301 状态。
我正在尝试将所有 http 流量重定向到 https,同时返回 301 状态代码。出于某种原因,我得到了 307 状态,我不知道为什么。我试图搜索以查看我是否遗漏了配置中的某些内容,但它似乎与我看到的所有内容都相似。
我的web.config
<rewrite>
<rules>
<rule name="ForceWWW" stopProcessing="true">
<match url=".*" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^MY_DOMAINE" />
</conditions>
<action type="Redirect" url="https://www.MY_DOMAINE/{R:0}" redirectType="Permanent" />
</rule>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
<outboundRules>
<rule name="Add Strict-Transport-Security when HTTPS" enabled="true">
<match serverVariable="RESPONSE_Strict_Transport_Security" pattern=".*" />
<conditions>
<add input="{HTTPS}" pattern="on" ignoreCase="true" />
</conditions>
<action type="Rewrite" value="max-age=31536000" />
</rule>
</outboundRules>
</rewrite>
更新
我刚刚发现了一些有趣的东西。例如我的域名是 domaine.com
如果我搜索:
domaine.com重定向为301
http://www.domaine.com重定向为307
www.domaine.com重定向是307
更新
我只遇到 Chrome 的问题。其他浏览器具有重定向的 301 状态。