How can I reroute a sub-domain to localhost + port number?
- by urig
I have several web applications running on my developer machine. They mimic our production web applications which are hosted on sub-domain. For example, consider:
api.myserver.com - is mimicked by 127.0.0.1:8000
www.myserver.com - is mimicked by 127.0.0.1:8008
and so on...
How can I make it so that, on my Windows 7 machine, HTTP calls to "api.myserver.com" (note the lack of port number) are redirected to 127.0.0.1:8000 etc? Note that this needs to apply both to client-side calls (in the browser) and server-side calls (from IIS to Python development server and vice versa).
Do I need a proxy to run locally to achieve this? Can you recommend such a tool?