我如何通过URL重写进行重定向,例如从https://www.contoso.com重定向到另一个服务器,例如重定向到https://www.testpage.com
xt0899hw1#
您可以使用iis url rewrite进行重定向,并使用以下规则:
<rule name="test"> <match url="^(.*)$" /> <conditions> <add input="{HTTP_HOST}" pattern="^www.contoso.com$" /> </conditions> <action type="Redirect" url="https://www.testpage.com/{R:1}" /> </rule>
1条答案
按热度按时间xt0899hw1#
您可以使用iis url rewrite进行重定向,并使用以下规则: