Hi all,
I have a web app deployed in azure. For this web app I bought a domain from a 3rd party registrar. I linked that external domain to my web app (which worked by adding the awverify CNAME record to my DNS settings).
However, even when applying the right DNS settings, when I browse to my domain the URL gets redirected to my web app, instead of the URL staying the same while showing my web app.
I expect this behavior:
www.<mydomain>.com
navigates to
www.<mydomain>.com while showing the Azure Web App
But I have this behavior
www.<mydomain>.com
navigates to
<app>.azurewebsites.net and showing the Azure web app
These are my DNS settings
CNAME Record | @ | <appname>.azurewebsites.net. |
CNAME Record | www | <appname>.azurewebsites.net. |
I don't think I need an A record.
Can someone explain my why I am experiecing this behavior?
Thanks.