URL redirection
Hello, I encountered a problem with URL redirection: For example, the domain name //www.google.com will be redirected to this URL. How can this be resolved
Hi! Could you please provide all the redirection parameters or a screenshot of them?
I'm sorry I didn't take a screenshot. Starting localhost: port locally doesn't have this issue. But for example, accessing www.xxx. com/Google. com/will force you to jump to https://www.google.com
Just to be clear, is the problem in the redirects collection or somewhere else (e.g., proxies)? If it's in the redirects, can you provide all field inputs so I can try to reproduce the issue? Example:
I don't have any configuration here. My current solution is to solve the URL redirection problem in nginx by matching double slashes.
if ($request_uri ~ "^//") { return 403; }