Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$route['[0-9A-Za-z]'] = "editor/index/$1";
エディタ コントローラを見ると、index メソッドでパラメータが渡されません。「$1」とだけ書いてある
あなたはちょうど試すことができます$route[ '(:any)' ] = "editor"
$route[ '(:any)' ] = "editor"
次に、必要に応じて処理します。
function index() { $id = $this->uri->segment( 3 ); // Or whatever segment you end up with. // Do something. }