Suppose proxy server address is abc.publicdomain.com. Backend Webserver address is xyz.internaldomain.com
When the client send the request like http://abc.publicdomain.com then it also send the server address in http header variable like serveraddress: xyz.internaldomain.com.
In inbound rules I rewrite address as action type="Rewrite" url="{C:1}: //{HTTP_SERVERADDRESS}/{R:1}". Works fine.
In outbound rules I want to swap address in links of xyz.internaldomain.com with abc.publicdomain.com. How to write outbound rules for swapping address.
How to write outbound rules in such a way that it swap address in links of xyz.internaldomain.com with abc.publicdomain.com without touch other links likehttp://www.microsoft.com.
Thanks