I reach to a page which has URL parameters. e.g http://127.0.0.1:5000/?A=ABC123&B=44444&C=hello
When I click on search button, with some search string, with form method = post, it searches but has the same URL, which has values from the previous run. It shows the search result but the parameter still has values from the previous run- http://127.0.0.1:5000/?A=ABC123&B=44444&C=hello
I want to remove the url parameters. After my search, the URL should be http://127.0.0.1:5000/
<form method="POST">
<input type="text" name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
I expect the search button should clear the existing URL parameters.