Take for example an URL like `https://example.com//abc/def`. The router wrongly parses the path as `/def`, so the request gets routed there. The expected result is `//abc/def`.
Take for example an URL like
https://example.com//abc/def.The router wrongly parses the path as
/def, so the request gets routed there.The expected result is
//abc/def.