REDIRECTING URLs
-
I have several URLs which are all redirecting to http://www.ontrendbridal.com.au. These URLs seem to appear in a web.config file but some of them are redirecting to subfolders within the website http://www.ontrendbridal.com.au/(name of subfolder) but I cannot see where the redirection appears – here’s an example of one which is doing it incorrectly (below): My question: Is there another file which could be overriding these instructions in the web.config that is causing this redirection – any help would be greatly appreciated – thanks, Kerrie
<rule name=”stradbrokeislandweddings.com.au” stopProcessing=”true”>
<match url=”.*” />
<conditions>
<add input=”{HTTP_HOST}” pattern=”^(www.)?stradbrokeislandweddings.com.au” />
<add input=”{PATH_INFO}” pattern=”^/ontrendbridal” negate=”true” />
</conditions>
<action type=”Rewrite” url=”\ontrendbridal\” />
</rule>
The topic ‘REDIRECTING URLs’ is closed to new replies.