ボックスとボタンのある簡単な検索フォームがあります。
<form action = "/search/" method = "get">
<input id = "search_box" type ="text" name = "location" value placeholder = "Where are you?" />
<input id = "search_button" type="submit" value = 'Go' />
</form>
これは私をに送ります/search/?location=whatever
/search/whatever
代わりにこれを送信するにはどうすればよいですか?-つまり、GETデータはなく、URLのみです。