An example URL with query parameters would behttps://myhost.com/path?queryparam=value¶m2=value2
however, what if the URL does not contain the leading ?
to introduce the query parameters:
https://myhost.com/path&queryparam=value¶m2=value2
(using literal &
and not URL encoded %26)
Is this a well formed URL?
1