Simcha Khabinsky
Simcha Khabinsky

Reputation: 2039

Point Azure Website URL to Another Azure Website

Can this be done? Any ideas on how to get this to work?

Upvotes: 1

Views: 374

Answers (3)

Chris Gillum
Chris Gillum

Reputation: 15042

You can achieve this using ARR (Application Request Routing). See this blog post for more details and an example which roughly matches yours: http://ruslany.net/2014/05/using-azure-web-site-as-a-reverse-proxy/

Basically, you create a rewrite rule which forwards all traffic to mysite.com/blog to myazureblog.azurewebsites.net. The client's browser will still show mysite.com/blog, which I assume is what you want.

Upvotes: 2

Peter Lea
Peter Lea

Reputation: 1751

We tend to prefix our domains to point them to different azure sites.

E.g www.mysite.com and blog.mysite.com

You cant do it like your attempting with the subdomain.

My two cents

Upvotes: 1

wyx2000
wyx2000

Reputation: 83

I don't think that is possible, think this way, what if you add google.com to your site with url like mysite.com/google ? people will think google is created by you if that works.

Upvotes: 0

Related Questions