请查看文件目录
controller
-student
--dashboard_student.php
--edit_profile.php
// at edit_profile.php
public function method1(){
$parameter_1='XYZ';
$parameter_2='ABC';
redirect('student/dashboard_student/method2/'.$parameter_1.'/'.$parameter_2);
}
//在dashboard_student.php上
public function method2($parameter_1,$parameter_2){
echo $parameter_1.','.$parameter_2;
}
当我运行此代码时,发现:
404 Page Not Found
The page you requested was not found.
但是希望:
XYZ,ABC
答案 0 :(得分:-2)
请用于从CI中的参数获取值
$this->uri->segment(x);
其中x属于您的参数编号。