I have an ASP.NET application (WebForms) A which serves mycompany.com URL.
I need to host new website (ASP.NET MVC) B on the same IIS, which serves mycompany.com/B/... pattern.
Main objective here is that, we want to keep mycompany.com domain in URL for branding issues.
How can I manage this?
The scenarios I already tried:
- I defined mycompany.com/B pattern on load balancer, so that balancer can redirect specific request to my website B. In this scenario, webpage load was successful however resource files such as css, js, etc failed to load because they tried to load from mycompany.com insted of mycompany.com/B.