2010-05-03 4 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";