Пожалуйста, смотрите каталог с файлами
controller
-student
--dashboard_student.php
--edit_profile.php
// на 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