我有一个托管在 A2 Hosting 上的旧网站,我正在尝试将其重定向到托管在 GoDaddy 上的新域。我尝试在我的 web.config 上编辑“HTTP 到 HTTPS 重定向”规则,但是它仍然没有重定向。
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^www.test.gov.mp$" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="https://www.test.health/{R:1}" />
</rule>
</rules>
</rewrite>
test.gov.mp 是我的旧域,test.health 是我的新域。