Currently running Phalcon 1.0.0 since the latest is seg faulting for me. My problem is the routing that directs uri to a specific controller isn't working the way i would expect when adding ? to uri. In the example below, I expect uri /explore/?a=b to go to the Explore controller but it doesn't.
uri: /explore/ goes to ExploreController -> indexAction uri: /explore/?a=b goes to IndexController -> indexACtion
So, my question is there a way to force this without setting up entries in Phalcon\Mvc\Router add method? Is there something I'm missing?