when i access "/apphelper" phalcon returns. but "/apphelpeR" or "/appHelper" phalcon return a blank page. how to make phalcon url case insensitive
you can use like this:
//Camelize actions $eventsManager->attach('dispatch:beforeDispatch',function ($event,$dispatcher){ $dispatcher->setActionName(Phalcon\Text::camelize($dispatcher->getActionName())); });