如何制作路线和班级类别/子类别/详细信息页面

时间:2014-08-02 11:07:39

标签: routes kohana

我刚开始与Kohana合作。我想要以下urlrouting。

www.domain.com/tv/ledtv/samung-pt1234/ 
domain / category / subcategory / details page /

引导程序和类中的路由如何?

我希望有人有一些提示!

Route::set('products', 'products(/<brand>(/<category>(/<subcategory>)))')
        ->defaults(array(
            'controller' => 'products',
            'action'     => 'index',

));

2 个答案:

答案 0 :(得分:1)

对于此域名:www.domain.com/tv/ledtv/samung-pt1234/(域名,类别,子类别,详细信息)请尝试以下路线:

Route::set('products', <category>(/<subcategory>(/<details>)))')
    ->defaults(array(
        'controller' => 'products',
        'action' => 'index'
    ));

答案 1 :(得分:0)