$route['[0-9A-Za-z]'] = "editor/index/$1";
当我查看我的编辑器控制器时,在索引方法中,我没有通过参数。它只是说“1美元”
答案 0 :(得分:0)
您可以尝试$route[ '(:any)' ] = "editor"
然后根据需要处理:
function index() {
$id = $this->uri->segment( 3 ); // Or whatever segment you end up with.
// Do something.
}