zu Ihren Konfigurations hinzufügen:
'components' => ['errorHandler' => [
'errorAction' => 'site/error',
],
Controller erstellen, falls nicht vorhanden ist: SiteController.php mit Inhalt:
namespace app\controllers;
use Yii;
use yii\web\Controller;
class SiteController extends Controller
{
public function actionError()
{
$exception = Yii::$app->errorHandler->exception;
if ($exception !== null) {
$this->layout = 'yourNewLayout';
return $this->render('error', ['exception' => $exception]);
}
}
}
und einfachste Ansicht site/error.php:
<?php
use yii\helpers\Html;
?>
<div class="site-error">
<?= Html::encode($exception->getMessage()) ?>
</div>
Getestet auf Yii2. Weitere Informationen finden Sie in der Dokumentation http://www.yiiframework.com/doc-2.0/guide-runtime-handling-errors.html#using-error-handler
Ähnliche Fragen hier: http://stackoverflow.com/questions/27573826/how-to-set-layout-for-errorhandler-dynamically-without-module – robsch