1

例如:

/modules/test/controllers/index.php- 文件夹结构

example.com/test/index/param1/someValue- 网址

或类似的东西。

我需要在引导程序中写什么来制作这条路径?

Route::set('test', 'test')
  ->defaults(array(
      'directory'  => 'modules/test/controllers',
      'controller' => 'index',
      'action'     => 'index',
  ));

但这不起作用。

4

1 回答 1

2

我发现 Kohana 路由文档有点缺乏,并写了一个非常详细的概述来回答你的问题:http ://www.kineticklink.com/kohana-3-routing/

注意:我从来没有接触过更高级的正则表达式匹配的东西——将成为第 3 部分

于 2012-09-09T20:45:34.610 回答