2017-07-28 12 views
0

私はBASE_URLがhttps://localhost/project_name/abcde/CodeIgniterのダイナミックなベースURL

そしてabcdeあるhttps://localhost/project_name/abcde/mycontroller/myfunction

がデータベースから来るようなURL構造はなりcodigniterプロジェクトを作成します。

手段、私はあなたがABCDEのパターンを確認する必要があり

$this->uri->segment(1); //abcde(Comes from database) 
$this->uri->segment(2); //controller 
$this->uri->segment(3); //function 

答えて

0

たい。共通の接頭辞を持つものでなければなりません。そのcommon prefixをroutes.phpの識別子として使用し、そのルートに基づいて、ユーザをコントローラとメソッドの組み合わせに誘導することができます。 this guideを参照してください。

関連する問題