Change output URL Search module

Use action = 'website/search' to get the query appended… Ideally your form would look like this…

<form action="website/search">
  <input type="text" name="filter" />
  <input type="submit">
</form>

Then you can grab filter to interact with WordPress Query and display result.

Hope this helps.