yii2自訂錯誤頁面的方法:1、在「views/site/error.php」中設定錯誤頁面的樣式;2、在「config/main.php」中,修改設定文件,使用“'errorAction'=>'site/error',”語句進行呼叫。
在Yii2版本的advanced進階範本環境中,自訂404錯誤頁面:
1、views/ site/error.php,設定錯誤頁面樣式
<?php $this->context->layout = false; //不使用布局,或者改为自己所需要使用的布局 ?> <div class="site-error"> <h1>404错误</h1> </div>
#2、修改應用程式的設定檔:config/main.php
'errorHandler' => [ 'errorAction' => 'site/error', ],
以上是yii2如何自訂錯誤頁面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!