y2k
y2k

Reputation: 66006

Why Zend_Route don't work?

routes.info.route = "info"
routes.info.defaults.module = "default"
routes.info.defaults.controller = "index"
routes.info.defaults.action = "info"

http://localhost/info/ 
Exception information:

    Message: Invalid controller specified (info)

Request Parameters:

array (
  'controller' => 'info',
  'action' => 'index',
  'module' => 'default',
)  

Upvotes: 0

Views: 137

Answers (1)

streetparade
streetparade

Reputation: 32888

Try to change the name of second route

routes.info.route = "info"
routes.info.defaults.module = "default"
routes.info.defaults.controller = "index"
routes.info.defaults.action = "faq"

Upvotes: 1

Related Questions