2012-12-06 41 views
0

我在我的路線文件內容如下所示:管理一個htaccess文件航線笨

$route['logout']    = 'admin/logout'; 
$route['res_yass']    = 'page/index/res_yass'; 
$route['res_nesr']    = 'page/index/res_nesr'; 
$route['societe']    = 'page/index/societe'; 
$route['app_type']    = 'page/index/app_type'; 
$route['future_plan_situation'] = 'page/index/future_plan_situation'; 
$route['plan_situation']  = 'page/index/plan_situation'; 
$route['fini_stand']   = 'page/index/fini_stand'; 
$route['future_app_type']  = 'page/index/future_app_type'; 

,現在工作正常,但每當我想添加頁面我必須將它添加在路由頁面,這就是不是一個好主意。所以我怎麼能改變它在一個htaccess文件,除了註銷之一。 thanx提前。

回答

2

試試這個

$route['(:any)'] = "page/index/$1"; 
$route['logout'] = 'admin/logout'; 
+0

爲什麼註銷是後(:任何)不應該是之前??? –

+0

沒關係。文字匹配優先於正則表達式。 – Sefus

+0

謝謝你的鍛鍊。 –