我是CodeIgniter的新成員。我需要在codeigniter中使用斜槓傳遞變量
我控制器是:
class User extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper('form');
$this->load->library('form_validation');
}
public function index($user)
{
if($user != '')
{
if($this->session->userdata('user_id'))
{
echo 'user in';
}
else
{
redirect('/');
}
}
else
{
echo 'wrong page';
}
}
}
所有的第一次我登錄到這個網站。 如果我給的網址好像http://localhost/picyou/user
它顯示「錯誤頁」 ......
如果我給的網址好像http://localhost/picyou/user/fh
它顯示「404錯誤」 ......
但我需要「用戶」來顯示。
幫助我......
in URI routing「$ route ['user /(:any)'] ='user/index';」工作正常... – KarSho