Too Many Redirects on Website with Plus Sign #7347
-
Page to InvestigateSteps to ReproduceHi, I'm trying to send an email by using Mailchimp, but I found that when I open a link that has a plus sign in a utm parameter, it returns Here is the URL that doesn't work: Here is the URL that works: (plug sign -> hypen) I don't use any redirect options in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @peterkimzz! Thanks for your post. I'm not familiar with this set-up at all, but it's really interesting. Thanks for sharing, I learned something new 😄 It sounds like the issue with the URL containing a plus sign (+) in the utm_source parameter resulting in an To avoid this issue, you can replace the plus sign with its URL-encoded equivalent
For me, this renders the page fine. |
Beta Was this translation helpful? Give feedback.
-
This discussion was automatically locked because the community moved to a new site. Please join us at vercel.community |
Beta Was this translation helpful? Give feedback.
Hi @peterkimzz!
Thanks for your post. I'm not familiar with this set-up at all, but it's really interesting. Thanks for sharing, I learned something new 😄
It sounds like the issue with the URL containing a plus sign (+) in the utm_source parameter resulting in an
ERR_TOO_MANY_REDIRECTS
error may be due to how the server interprets the + sign. In URL encoding, a plus sign can be interpreted as a space, which might cause unexpected behavior in the server's redirection logic.To avoid this issue, you can replace the plus sign with its URL-encoded equivalent
%2B
. Here's an example: