Routing in Zend Framework 2
I'm trying to do some routing in Zend Framework 2, but it's not working. The basics of the skeleton application are working, so I added a new module called User and the following code in the file \module\User\config\module.config.php 'controllers' => array( 'invokables' => array( 'User\Controller\User' => 'User\Controller\UserController', ), ), 'router' => array( 'routes' => array( 'login' => array( 'type' => 'Literal', 'options' => array( 'route' => '/login', 'defaults' => array( '__NAMESPACE__' => 'User\Controller', 'controller' => 'User', 'action' => 'login', ), ), ), 'user_create' => array