kohana路由2级控制器文件夹

时间:2014-04-04 12:42:31

标签: kohana routes subdirectory

我有这样的路线:

Route::set('forum/frontend', 'forum(/<controller>(/<action>(/<id>(/<id2>))))')
    ->defaults(array(
        'controller' => 'thread',
        'action' => 'list',
        'directory' => 'frontend'
    ));

我也有控制器:/modules/forum/classes/Controller/Frontend/Forum/Thread.php,名字如下:

class Controller_Frontend_Forum_Thread extends Controller_Frontend {
 public function action_add(){

 }
}

但是当我尝试访问网址/forum/thread/add时,我收到了错误消息:

  

在此服务器上找不到请求的URL论坛/ thread / add。

有什么问题?

0 个答案:

没有答案