我是 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
如果我给像它显示'错误页面'的网址......
如果我给 urlhttp://localhost/picyou/user/fh
显示“404 错误”...
但我需要显示“用户在”。
帮我...