Legacy 8 Project on Cloud - Redirects not working ...
# help-with-umbraco
c
Hey all, Got a legacy 8 project running on cloud that used to be an Uno site. We've had a problem for a while now but a bit of a major issue has arisen, where we have noticed that no redirect applied in the web.config appears to be working. We have the good ol fashion:
Copy code
<rule name="Non WWW to WWW" stopProcessing="true">
    <match url="(.*)" ignoreCase="true" />
    <conditions>
      <add input="{HTTP_HOST}" pattern="^example\.com" />
    </conditions>
    <action type="Redirect" url="https://www.example.com/{R:1}" redirectType="Permanent" />
  </rule>
But it just doesnt do jack. Equally - What used to be the original Umbraco Uno manual redirect system just seems to not work anymore, and the custom 404 craps out. Posted this a while ago, because it was just the 404 that was the problem. Now these additional issues have cropped up 😅
4 Views