在Codeigniter中配置路由

时间:2014-10-18 16:46:48

标签: codeigniter routes

我已经尝试过了,但没有成功。

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? 提前致谢

1 个答案:

答案 0 :(得分:2)

$route['grand/(:any)/(:any)'] = 'grand/index/$1/$2';

public function index($parent,$child){
echo $child;
}

应该有用。