Is there a way to disable Beautiful URLs and work with simple urls like index.php?r=index/help ?? And generate that links by url() function in view
My 2 cents:
see: https://docs.phalcon.io/en/latest/reference/url.html#producing-urls-without-mod-rewrite
<?php $di->set('url', function() { $url = new Phalcon\Mvc\Url(); //Pass the URI in $_GET["_url"] $url->setBaseUri('/index.php?r=/'); return $url; });