views:

28

answers:

1
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',
)  
+1  A: 

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"
streetparade
actually had to make the configs `resources.router.route.x`
Joshua