'(:any)' => 'post/list/$1',And in my Controller_Post:
'(:any)/(:any):' => 'post/view/$1/$2',
public function action_list($categorySlug)Sorry for some mistake ^^'
{
// somes code
}
public function action_view($categorySlug, $postSlug)
{
//some code
}
'blog/([a-zA-Z0-9._-]+)' => 'post/list/$1',
'blog/([a-zA-Z0-9._-]+)/([a-zA-Z0-9._-]+)' => 'post/view/$1/$2',
'blog/(:segment)' => 'post/list/$1',or even
'blog/(:segment)/(:segment)' => 'post/view/$1/$2',
'blog/(:any)' => 'post/list/$1',
'blog/(:segment)/(:any)' => 'post/view/$1/$2',
It looks like you're new here. If you want to get involved, click one of these buttons!