The form structure would be something like this:
<form target="site.url/search/">
<input type="text" name="keyword" value="a">
</form>
How do I submit it where instead of this:
https://site.url/search/keyword=a
It would end up like this:
https://site.url/search/keyword?a
I am thinking another approach as well where the target url would be:
https://site.url/search/keyword?
And then find a way to get the text field value but not include the text field name so it immediately attaches to the tail end of the url, like this.
https://site.url/search/keyword?myKeyword
Is this possible?