- 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.
- 🇮🇳India naveenvalecha New Delhi
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.