By default, our URL forwarding and redirection always preserved the full pathname and query strings in all requests. It meant that if you were forwarding: https://example.com to https://example.net Then all requests to the old URL that had path info or query strings, like: https://example.com/document/name?param=value Would have the /document/name?param=value preserved when forwarded: https://example.net/document/name?param=value But sometimes you […]