I have route like this:
* @Route(
* "/search/{ro}/{mind}/{his}",
* name="search",
* requirements={"ro"="[a-zA-Z]{2,}", "mind"="()|new|old", "his"="()|yes|ok|no"}
* )
if I want this url: /search/yes I need to enter this address: /search///yes to show page.
how can remove // from original url?