We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

how to make phalcon url case insensitive

when i access "/apphelper" phalcon returns. but "/apphelpeR" or "/appHelper" phalcon return a blank page. how to make phalcon url case insensitive

edited Apr '15

you can use like this:

                        //Camelize actions
                        $eventsManager->attach('dispatch:beforeDispatch',function ($event,$dispatcher){
                            $dispatcher->setActionName(Phalcon\Text::camelize($dispatcher->getActionName()));
                        });