在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>
推荐学习:yii入门教程
以上就是yii2怎么定义错误页面的详细内容。
