How can I redirect subdomain to another local ip: port from IIS?
Is it possible to redirect a subdomain to another local IP: PORT with IIS?
With Apache it will 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>
+3
wenny
source
to share
1 answer
You can do this using the URL Rewrite extension. There's a good article about it here
Also check this article here
Good luck !!
+1
slash
source
to share