2010-05-03 28 views

回答

1

Personalized User Vanity URL's in CodeIgniter,你可以通過修改你的路由完成本文件:

$handle = opendir(APPPATH."/modules"); 
while (false !== ($file = readdir($handle))) { 
    if(is_dir(APPPATH."/modules/".$file)){ 
    $route[$file] = $file; 
    $route[$file."/(.*)"] = $file."/$1"; 
    } 
} 

/*Your custom routes here*/ 

/*Wrap up, anything that isnt accounted for pushes to the alias check*/ 
$route['([a-z\-_\/]+)'] = "aliases/check/$1";