I have a website hosted in Azure and I have traffic manager in front. I also have a CNAME created for the traffic manager.
When I hit the trafficmanager url, I get the the expect HTML response back. But when I hit the CNAME url, I get html back that is basically an iframe with the src pointing to the trafficmanager url. I don't understand where is this coming from. This is what the response looks like:
<html>
<head>
<title>My Site Name</title>
<meta name="keywords" content=""
</head>
<frameset rows="100%", *" border="0" frameborder="0">
<frame src="mysite.trafficmanager.net" name="mysite">
</frameset>
</html>
Has anyone run into this before? Is this even expected?