Hello... I had enabled canonical URL rewrite on my site, but had to disable it to get a sub domain to work. My question is.... how do I enable canonical on my website but allow one page of my site to use the specific subdomain.
All pages should be like http://mysite.com
And the one page should be like: http://subdomain.mysite.com
However currently if I enabled canonical the subdomain reverts back to
http://mysite.com
This is what is currently on the site
<rule name="CanonicalHostNameRule1" enabled="false" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^Mysite\.com$" negate="true" />
< ...
Go to the complete details ...