I have two processes/apps running on port 8888 & port 8890.
I can access them in my windows server with http://localhost:8888 & http://localhost:8890.
I am currently using IIS GUI for rewriting URLs. Application Request Routing(ARR) & URL Rewrite are installed.
I have been successful in rewriting or redirecting all requests which hit the server to one port - essentially I map '*' wildcard to 'http://localhost:8888/{R:0}' and it works when I access http://website!
How can I extend this to the following scenario:
http://website/solution1/ should redirect to port 8888 & http://website/solution2/ should redirect to port 8890
Please help.