码迷,mamicode.com
首页 > 其他好文 > 详细

yii2自定义报错页面

时间:2018-11-27 01:23:38      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:使用   方法   需要   views   ror   his   class   div   config   

在Yii2版本的advanced高级模板环境中:设置404自定义页面的方法 
1.config/main.php文件 

‘errorHandler‘ => [
‘errorAction‘ => ‘site/error‘,
 ],

2.views/site/error.php

<?php
$this->context->layout = false; //不使用布局,或者改为自己所需要使用的布局
?>
<div class="site-error">
    <h1>404</h1>
</div>

 

yii2自定义报错页面

标签:使用   方法   需要   views   ror   his   class   div   config   

原文地址:https://www.cnblogs.com/5aiQ/p/10023505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!