http://domain.com/foo/usernameとhttp://domain.com/foo/username/bazのようにしようとしていますが、ルートを使用して機能させる方法がわかりませんでした。 php
これがroutes.phpにあるものです
$route['foo/(:any)'] = foo_controller/index/$1;
$route['foo/(:any)/baz'] = 'foo_controller/baz/$1';
これが私のfoo_controller.phpです
class Foo_Controller {
function _construct() {}
function index() {
$username = strtolower($this->uri->segment('2'));
...
}
function baz() {}
}
/ foo / username / bazに移動すると、indexメソッドが読み込まれるだけです。
助けてください?