2014-10-18 149 views
0

我已經試過這個,但沒有成功。在Codeigniter中配置路由

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'; 
} 

我的問題是:我怎麼能回聲$的孩子呢? 在此先感謝

回答

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

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

應該工作。

+0

**非常感謝。** – 2014-10-18 17:06:41