2010-05-03 2 views

Répondre

1

Selon Personalized User Vanity URL's in CodeIgniter, vous pouvez accomplir cela en modifiant vos itinéraires fichier:

$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";