application/config/routes.php で エラー時の
routes.php 内に以下を記述
$route['404_override'] = 'mycon/error_404';
Mycon.php 内に以下を記述(例)
function error_404() {
$this->output->set_status_header('404');
$html = $this->twig->render('404.html');
echo $html;
}