2012-08-16 57 views

回答

0

邑,你可以從兩個的.htaccess和路線做

這裏是從使用途徑

$route['(:any)'] = 'shop/$1'; 

解決方案通過使用這條路線,你會從其他的網址,如果你想
http://www.abc.com/mysecoundController/myfunction爲越來越問題
它也將重定向到店控制器,
爲此你必須編寫更多的路線 as

 $route['(mySecoundController:any)'] = 'mySecoundController/$1'; 
    $route['(:any)'] = 'shop/$1'; 

這裏是
http://codeigniter.com/user_guide/general/routing.html