How can we use multiple Azure web apps with each with different frameworks under one domain name without using sub-domains?

Viewed 69

Example: our main Azure web app uses ASP.NET, say www.mywebsite.com.

We want www.mywebsite.com/another_framework to transparently route HTTPS requests to and from an internal, ASP MVC website: www.internalwebsite.com. When users open www.mywebsite.com/another_framework they see the content for www.internalwebsite.com transparently.

Apache lets us do this with URL rewriting but how is this done in Azure?

We don’t want to rewrite either of the websites and we don’t want to lose the SEO ranking by having multiple sub-domains.

How is this done in Azure with Web Apps?

1 Answers
Related