ここでリダイレクトが機能しないのはなぜですか?私は未定義の関数redirect()を呼び出しています。Codeigniterのリダイレクトが機能しない
class Login extends CI_Controller {
function index() {
parent::__construct();
$this->load->helper('form');
$this->load->helper('url');
$this->load->view('login_view');
}
function authenticate() {
$this->load->model('user_model');
$query = $this->user_model->authenticate();
if($query) {
$data = array(
'username' => $this->input->post('username'),
'is_logged_in' => true
);
$this->session->set_userdata($data);
redirect('/site/news_feed');
}
else {
$this->index();
}
}
}
これらの「欠点」の例? – jondavidjohn