1
我想我的網站從https://localhost
重定向(但與IP寫的,像https://10.0.7.8
)像https://mysite.com
從HTTPS使用IIS URL重寫到另一個HTTPS
我目前的配置另一個HTTPS位置是:
<rewrite>
<rules>
<rule name="Rewrite to mysite.com" enabled="true" stopProcessing="true">
<match url="(.*)" />
<action type="Redirect" url="https://mysite.com/{R:0}" redirectType="Permanent" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="https://10.0.7.8*" />
</conditions>
</rule>
</rules>
</rewrite>
,當我訪問https://10.0.7.8
它不會去https://mysite.com
,它停留在https://10.0.7.8
任何想法,我究竟做錯了什麼?
完美的作品!非常感謝的人! –