Hi,
I would like to make a route for https://mysite.com/?s=cap&searchfor=pages to another controller than index. I've tried this, but is not working
$router->add(
'/\?s=([a-zA-Z0-9\_\-]+)&searchfor=([a-zA-Z0-9\_\-]+)',
[
'controller' => 'page',
'action' => 'search'
]
);