We will provision CNAMEs when you enable CDN through hosting control panel. The www CNAME is required because of DNS RFC compliance issues. If you
prefer not to use www on your site, then you can add the domain directly
to CloudFlare or setup force redirection from non-www to www via IIS URL Rewrite:
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<
configuration
>
<
system.webServer
>
<
rewrite
>
<
rules
>
<
rule
name
=
"Canonical Host Name"
stopProcessing
=
"true"
>
<
match
url
=
"(.*)"
/>
<
conditions
>
<
add
input
=
"{HTTP_HOST}"
pattern
=
"^domain\.com$"
/>
</
conditions
>
</
rule
>
</
rules
>
</
rewrite
>
</
system.webServer
>
</
configuration
>
Article ID: 1689, Created: October 28, 2014 at 9:36 PM, Modified: October 28, 2014 at 9:36 PM