我是CakePHP的新手,在这个项目中,有像
这样的路线Router::connect('/', array('controller' => 'pages', 'action' => 'index'));
如果我访问http://localhost/
,则会显示视图内容
但如果我将其更改为
Router::connect('/asdf', array('controller' => 'pages', 'action' => 'index'));
并访问http://localhost/asdf
,它会告诉404找不到。
我经常搜索,并且不知道为什么
示例代码:
答案 0 :(得分:0)
在routes.php文件的末尾添加此代码。
require CAKE . 'Config' . DS . 'routes.php';