Hi,

The following route comes by default with ZF2:

/'application' => array(
        'type'    => 'Literal',
        'options' => array(
                'route'    => '/application',
                'defaults' => array(
                        '__NAMESPACE__' => 'Application\Controller',
                        'controller'    => 'Index',
                        'action'        => 'index',
                ),
        ),
        [...]/

If I type: http://localhost/siteName/application
I won't be forwarded to 'Application\Controller\Index', instead I will have
a 404:
/A 404 error occurred
Page not found.
The requested URL could not be matched by routing./

The "home" route is working though (http://localhost/siteName is forwarding
to 'Application\Controller\Index')

Thank you for any help!



--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/application-route-not-working-for-me-tp4657748.html
Sent from the Zend Framework mailing list archive at Nabble.com.

-- 
List: [email protected]
Info: http://framework.zend.com/archives
Unsubscribe: [email protected]


Reply via email to