我启用了管理员路由。如何设置路由,使http://website.com/admin转到 posts/admin_index?
我有这个:
Router::connect('/', array('controller' => 'posts', 'action' => 'index'));
但这似乎不起作用。我收到此错误(访问 http://website.com/admin时):
Missing Controller
Error: Controller could not be found.
Error: Create the class Controller below in file: app/controllers/controller.php
<?php
class Controller extends AppController {
var $name = '';
}
?>