2

codeigniterでバニティURLを作成するにはどうすればよいですか?フレームワークでこれを行うのに本当に問題があります。そして、そこには良い答えはないようです。

4

2 に答える 2

2

それは可能です、私は私のプロジェクトの1つでこれを使用しています...

これは、CodeIgniter フォーラムのスレッドで、その方法を示しています...

http://codeigniter.com/forums/viewthread/113962/

于 2010-05-03T23:41:21.040 に答える
1

CodeIgniterのPersonalizedUserVanity URLによると、これはルートファイルを変更することで実現できます。

$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";
于 2010-05-03T21:22:07.060 に答える