我刚开始与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',
));
答案 0 :(得分:1)
对于此域名:www.domain.com/tv/ledtv/samung-pt1234/
(域名,类别,子类别,详细信息)请尝试以下路线:
Route::set('products', <category>(/<subcategory>(/<details>)))')
->defaults(array(
'controller' => 'products',
'action' => 'index'
));
答案 1 :(得分:0)