As I see in Phosphorum source, routes.php, it points '/' route to Discussions::index
$router->add('/', array(
'controller' => 'discussions',
'action' => 'index'
));
So I did the same in my App, but somehow it always route https://localhost/ to IndexController. How can it be?
Another question, as I understood I can't delete IndexController, even I don't need it, right?