例如:
/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',
));
但这不起作用。