随着我对我的申请增加多语言支持,我与我的路线有问题。 某些路线已经停工的营地。
似乎有一个部分奏效,任何部分都有两个或两个以上。
关于如何确定这一点的任何帮助都会受到高度赞赏。
路线。 php 摘录:
// URI like /en/about -> use controller about
$route[ ^(en|br)/(.+)$ ] = "$2";
$route[ dashboard ] = dashboard ; //THIS WORKS
$route[ profile ] = profile/profile_list ;
$route[ profile_list/page ] = profile/profile_list ; //THIS DOESN T
$route[ profile_list/page/(:any) ] = profile/profile_list/$1 ;
$route[ profile/update ] = profile/update ;
$route[ profile/(:any) ] = profile/$1 ;
$route[ default_controller ] = landing ;
// /en , /de , /fr and /nl URIs -> use default controller
$route[ ^(en|br)$ ] = $route[ default_controller ];