I have a simple router config in Phalcon 4.0:
use Phalcon\Mvc\Router;
$router = new Router(false);
$router->notFound(['controller' => 'Http', 'action' => 'code404']);
$router->add('/', ['controller' => 'index', 'action' => 'index']);
https://my.domain/ returns something from index controller. But when i add even symbol '?' to my url (https://my.domain/?), it returns 404 page. I can't get what should i change in route and didn't found any information about routing query parameters in documentation.
P.S. I debugged $_GET
when using any parameters, they are present.