I have this url //domain/search-results/
I would like add filters to the URL but without using Javascript everytime the user click a filter, so the url grows like //domain/search-results/filter/filter/...
I can solve this by adding the filter via javascript to the action method, but I want to avoid this solution if possible.
I can't use redirect because it will cause the page to load twice (once for domain/search-results and another one domain/search-results/filter)
Thanks.