This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using System.Net; | |
using System.Security.Cryptography.X509Certificates; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Example.com</title> | |
</head> | |
<body> | |
<img src="//azxxxxxx.vo.msecnd.net/cdn/img/example.png" /> <!-- CDN will receive a HTTP 200 with the image content, thanks to the "CDN Passthrough" rewrite rule --> | |
<img src="//azxxxxxx.vo.msecnd.net/img/example.png" /> <!-- Normal Azure CDN URI which will recieve a 301 redirect if Azure CDN chooses www.example.com as the origin domain--> | |
<img src="/img/example.png" /> <!-- Non CDN edge cached content --> | |
</body> | |
</html> |