我有这样的路线(Kohana 3.3)
Route::set('project', 'project(/<action>(/<id>(/<idfile>)))')
现在有可能像这样查询
localhost/kohana/project/edit/16
localhost/kohana/project/list/
我想在动作列表中使用分页 - 所以我需要更改&#34; id&#34;到&#34;页面&#34;在我的路线中只有这个动作
我应该使用Regulars还是股票方法?
答案 0 :(得分:0)
解决下一条路线
Route::set('project', 'project(/<action>(/page/<page>)(/<id>(/<idfile>)))')