尝试在错误404页

时间:2018-04-25 02:13:52

标签: codeigniter

我试图在我使用的模板中获取错误404页面,但它不起作用。我也试过了MY_Exceptions。 有一个名为error404的视图页面,代码如下:

<h1><?php echo $heading;?></h1>
<?php echo $message; ?>

只显示错误消息。

我试图在我的模板中包含以下行以显示错误,但它引发了错误:

$this->load->view("pages/template.php");

如何使用codeigniter在我的模板中显示自定义错误404。

1 个答案:

答案 0 :(得分:0)

它应该是这样的,然后像这样传递messageheading

$data['heading'] = 'heading';
$data['message'] = 'your message';

$this->load->view("pages/template",$data);

而不是

$this->load->view("pages/template.php");

您的观点template.php

<h1><?php echo $heading;?></h1>
<?php echo $message; ?>

了解更多:https://www.codeigniter.com/user_guide/general/views.html#adding-dynamic-data-to-the-view