これが私がヘッダーを設定する方法です$this->output-> set_status_header( '404'); コントローラー内:
<?php
class custom404 extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->output->set_status_header('404');
$this->view_data['page_title'] = 'Page not found';
$this->view_data['main_content'] = 'error404';
$this->load->view('template', $this->view_data);
}
}
?>
次に、ビューのステータスヘッダー404を何らかの方法で確認する必要がありますか?
$ this-> view_dataで別の変数を送信する以外にアドバイスはありますか?