Paul
Paul

Reputation: 163

URLs reroutes in Azure

I would like to set up these URL reroutes in Azure:

All calls to:

sub.mydomain.com/path/to/appl 

routes to:

someapp.azurewebsites.net/path/to/appl/sub

How can I achieve this in Azure?

Note, sub.mydomain.com is already purchased.

Upvotes: 0

Views: 48

Answers (1)

Jason Ye
Jason Ye

Reputation: 13954

sub.mydomain.com

For now, Azure DNS does not currently support purchasing of domain names.

If you want to purchase domains, you need to use a third-party domain name registrar.

Update:

We should do it from the domain name registrar, use CNAME map your domain.com to azure someapp.azurewebsites.net/path/to/appl/sub.

Upvotes: 1

Related Questions