How can I redirect with Url rewrite e.g. from https://www.contoso.com to another server?

717 views Asked by At

How can I redirect with url rewrite e.g. from https://www.contoso.com to another server e.g. to https://www.testpage.com

1

There are 1 answers

3
samwu On

You can use iis url rewrite for redirection, and use this rule:

<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>