kohana路由有关问题

kohana路由问题如果我路由设置成这样:Route::set(sections, directory(/controller(/action(/id

kohana路由问题
如果我路由设置成这样:

Route::set('sections', '<directory>(/<controller>(/<action>(/<id>)))',
    array(
        'directory' => '(admin|affiliate)'
    ))
    ->defaults(array(
        'controller' => 'index',
        'action'     => 'index',
    ));

在地址栏中我应该怎么输入才能访问
[解决办法]
最好的方法是看手册,不懂英文也有中文的,再不懂我就没办法啦