• So, I have multi network with subdomains and moved one subdomain website to other single installation with new domain name and https protocol. And I don’t know how redirect to new domain in IIS 7.5. Can you help me?

    Old url: https://score.blog.site.com.ua
    New url: https://total.site.com.ua

    My web.config redirect rule:

    <rule name="Redirect to HTTPS" stopProcessing="true">
                        <match url="(score.*)" />
                        <action type="Redirect" url="https://total.site.com.ua/{R:1}" />
    </rule>
  • The topic ‘Multinetwork IIS redirect rule from old to new domain’ is closed to new replies.