How to redirect subdomain to another local ip:port with IIS?

10,261

You can do this using URL Rewrite extension. There's a good article on this here

Also check this article here

Good Luck!!

Share:
10,261
Admin
Author by

Admin

Updated on June 07, 2022

Comments

  • Admin
    Admin almost 2 years

    Is it possible to redirect a subdomain to another local IP:PORT address with IIS?

    With Apache it would look like this:

    <VirtualHost *:80>
    ProxyPreserveHost On
    ProxyPass / http://192.168.111.2:1234/
    ProxyPassReverse / http://192.168.111.2:1234/
    ServerName hostname.example.com
    </VirtualHost>