我已经尝试过了,但没有成功。
URL IS: domain.com/grand/parent/child
路线
$route['grand/(:any)'] = "smm/index/$1";
在控制器
中public function index($parent = NULL){
// This is parent option//
Echo '$parent';
// This is child Section
Echo '$child';
}
我的问题是:我如何回应$ child? 提前致谢
答案 0 :(得分:2)
$route['grand/(:any)/(:any)'] = 'grand/index/$1/$2';
和
public function index($parent,$child){
echo $child;
}
应该有用。