yii2 定義友好404

一、frontend->config->main.php添加以下:

'errorHandler' => [
            'errorAction' => 'site/error',
        ],
二、frontend->views->site->error.php中添加以下:(注:能夠自行發揮製做更漂亮的404頁面)


<?php

use yii\helpers\Html;

$this->title = $name;

$this->context->layout = false; //不使用佈局

?>
<div class="site-error">

    <h1><?= Html::encode($this->title) ?></h1>

    <div class="alert alert-danger">
        <?= nl2br(Html::encode($message)) ?>
    </div>

</div>
相關文章
相關標籤/搜索