You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2022. It is now read-only.
We have a bunch of URL's that returns a 301 and blank page. At first we thought it should have returned a 404, since we couldnt find it in the Url tracker tab in Umbraco. After using the SQL query from method LoadUrlTrackerMatchesFromDatabase we found a result in the database. See attached.
Problem here is that the 'redirectnodeid' = 0, but theres a valid url on the 'redirecturl'
What I added to make our redirects work was: && result.RedirectNodeId > 0
to line 455 in UrlTrackerModule.cs.
Since the check only checks if 'redirectnodeid' has a value.