-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Look-up redirect in content finder for multi-lingual sites using path and legacy route prefixed with the integer ID of the node with domains defined #18763
base: v15/dev
Are you sure you want to change the base?
Conversation
… and legacy route prefixed with the integer ID of the node with domains defined.
The code looks fine, but I had some issues when testing. It might be because I misunderstood the premise a bit here. I tried to do this with the not default language, so instead of doing it for English, I did it for Danish, the second language I added, and it doesn't work in that scenario because it can't find the domain. So the question is, is this only supposed to work for the default language or for any language? Might be working as intended but I'm not sure 😄 |
Not quite sure if we are seeing the same thing, but I've pushed an update that fixes something I found. To review what you reported I replayed the above testing steps, with one addition - also adding a I do get the correct redirects then stored in the database and they work in the sense of taking you to the expected destination page when you navigate to the old URL. In the backoffice though I couldn't see the original URL of the Danish page - it was rendered just as "#". The reason looks to be that the URL we retrieve from the database is passed into the That seems OK - but I am a little concerned I'm missing something here, as to why this behaviour was as it was before. |
Just spotted one small thing wrong in your testing - |
You're right 🤦 sorry about that, that's my bad, it works fine after I did that 😄 Does seem like we still have a broken integration test though 🤔 |
Yes, I see that failure. It's because of the last update I've made in ea97d9a. So perhaps that's not valid, but I'm a bit confused by it to be honest. Seems we can have routes of Have reverted the previous update for now. |
I've re-addressed this:
By just amending it in the presentation service - so if we can't get a URL from the route using the whole URL providers setup, if we have one that is a path, we'll display it anyway. So I think this now improves the situation with redirects without making any amends to the actual URL provider logic. I.e. redirects for non-default languages now work, and they are displayed in the backoffice. |
Just a comment to say we'll hold this for now. @kjac is digging into something that sounds related - with regard to routing non-default, variant content - so it makes sense to wait and see the outcome of that. |
This is back on the table now. The work @kjac was looking at in the end was limited to the delivery API. |
Bit unsure what state we ended in here Andy, but it looks good to me, so feel free to merge if you're happy 👍 |
I'll ask @kjac for a review too - hopefully he'll have time next week. I'm just a bit concerned this overlaps with something else he's been looking at regarding routing non-default languages, and if so, maybe I'm "band-aiding" around a deeper issue. |
Prerequisites
Resolves: #18714
Description
The linked issue raises an issue with redirects on websites where domains are defined in the content tree. I've traced it to a difference in what we store in the
umbracoRedirectUrl.url
column when a redirect rule is added.For a URL of
/en/test
:1057/test
- where the number is the integer ID of the node where the domain is defined./en/test
The difference seems to be in part about because the
RedirectTracker
component in 15 usesIPublishedUrlProvider.GetUrl()
, whereas in 13 we usedIPublishedCache.GetRouteById()
.But there may be a bit more to it than that - even with 13, it seemed we could have a mix of URLs depending on configuration (see #18763).
Given we in theory could have a mix of redirect URLs in an upgraded site, I've fixed in this PR by amending the content finder, so we look up both formats.
To Test:
/en
domain to this page.Look in
umbracoRedirectUrl.url
and you'll see two redirects, e.g./en/test
anden/test-2
.Update once of the redirects to the 13 format, using a query like:
The number prefix should be the integer ID of the root page you created above. It shouldn't have a leading
/
and the path should be the segment of the sub page only.The URL hash you can generate from e.g. https://emn178.github.io/online-tools/sha1.html
Then via Content > Redirect URL Management check you can navigate to both old URLs and end up on the current version of the page.