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',
)
views:
28answers:
1
+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
2010-06-04 22:40:19
actually had to make the configs `resources.router.route.x`
Joshua
2010-06-04 23:17:20