前缀路由不能在cakephp2.4.1中工作通过找不到错误

时间:2013-09-20 06:07:06

标签: php cakephp cakephp-2.4

我有新下载的cakephp 2.4.1并在core.php中添加了前缀路由

Configure::write('Routing.prefixes', array('admin'));

并在routes.php文件中添加了以下路由

Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));

Router::connect('/admin', array('controller' => 'pages', 'action' => 'index', 'admin' => true));

当我转到localhost / cakephp2.4 / admin时,它会给出

Not Found

The requested URL /cakephp2.4/admin was not found on this server.

我已经检查过core.php有Debug Level 2

 Configure::write('debug', 2);

不知道如何解决这个问题。

0 个答案:

没有答案