I am running Umbraco 7.1.6 and I have just put a website live and have over 180 redirects to implement which I have added to the URLRewriting.config file within the configs directory. The rewrites looks as follows:
The domains DNS is still propagating after only being initiated a couple of hours ago, are these issues related to that or is there some other reason that I can't see that is causing some redirects to work and some others not?
URL Rewrite Issues?
I am running Umbraco 7.1.6 and I have just put a website live and have over 180 redirects to implement which I have added to the URLRewriting.config file within the configs directory. The rewrites looks as follows:
<add name="About182" virtualUrl="^~/english/your-business/water-companies" rewriteUrlParameter="ExcludeFromClientQueryString" destinationUrl="/industries/water/" redirect="Application" redirectMode="Permanent" ignoreCase="true" />
The issue I am having is that some redirects such as :
<add name="About1" virtualUrl="^~/english" rewriteUrlParameter="ExcludeFromClientQueryString" destinationUrl="/" redirect="Application" redirectMode="Permanent" ignoreCase="true" />
work fine whereas other such as the above give a 404 error with the URL in the browser showing:
//your-business/water-companies
which obviously isnt the destinationUrl as set above which should redirect to the new homepage, another example:
shows in the browser as:
//company/about-us
whereas:
shows the correct destinationURL of:
/industries/aviation
The domains DNS is still propagating after only being initiated a couple of hours ago, are these issues related to that or is there some other reason that I can't see that is causing some redirects to work and some others not?
is working on a reply...