我正在尝试这样做: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 时,我得到的是它只是加载索引方法。
请帮忙?