- Merge request !31Issue #3037259: Endless Redirection loop when using Domain access β (Open) created by Andrew Gorokhovets
- πΊπΈUnited States jhedstrom Portland, OR
As noted above, this still needs a test to confirm the new logic.
- πΊπΈUnited States jstoller
This patch fixes a crazy error we were seeing when we enabled Cloudflare's proxy on our Pantheon hosted site. If the query string was not already in alphabetical order, you would be redirected so that it was. That's no big deal. However, if there were any variables in the query string starting with "utm_" and it was not in alphabetical order, you would get stuck in an endless redirect loop. So...
- ?b=test1&a=test2 became ?a=test2&b=test1
- ?utm_b=test1&utm_a=test2 throws ERR_TOO_MANY_REDIRECTS
- ?utm_a=test2&utm_b=test1 loads fine as is
This broke every link in our email communications, as they're automatically tagged with UTM codes.
- πΊπΈUnited States hungdo
#30 doesn't work for me on the frontpage of my site, still got the same issue, I modified the #30 patch, uploading new one.
- π²πΎMalaysia ckng
Tested patch #35, working well for utm redirect loop issue.
- πΊπΈUnited States firewaller
#35 fixed an issue with infinite redirects because of a trailing question mark (?).
- π¬π§United Kingdom minirobot London
Tidied up patch #35 to improve the conditional statement.
Here's the patch based on #28 which works with latest 8.x-1.10 https://www.drupal.org/project/redirect/releases/8.x-1.10 β
- π¨π¦Canada iaminawe
Thank you, confirming latest patch works correctly and fixes the issue on 8.x-1.10
- πΊπΈUnited States johnpicozzi Providence, RI
- πΊπΈUnited States johnpicozzi Providence, RI
Ok, MR is now mergeable. Would be great to get this rolled in.
- Status changed to RTBC
20 days ago 3:54pm 2 December 2024 - π¨π΄Colombia carma03
Confirming patch #39 π Endless Redirection loop when "Enforce clean and canonical URLs" is enabled Needs work works good on D10.3.10, PHP8.3 and version 1.10 of the Redirect module.