当前位置: 代码迷 >> PHP >> kohana路由有关问题
  详细解决方案

kohana路由有关问题

热度:180   发布时间:2013-06-19 10:26:40.0
kohana路由问题
如果我路由设置成这样:
Route::set('sections', '<directory>(/<controller>(/<action>(/<id>)))',
    array(
        'directory' => '(admin|affiliate)'
    ))
    ->defaults(array(
        'controller' => 'index',
        'action'     => 'index',
    ));

在地址栏中我应该怎么输入才能访问

------解决方案--------------------
最好的方法是看手册,不懂英文也有中文的,再不懂我就没办法啦
  相关解决方案