LARAVEL 5:更改默认维护(503)视图路径

时间:2016-11-21 16:36:51

标签: laravel laravel-5 exception-handling maintenance-mode

当服务器关闭时,抛出每个请求MaintenanceModeException并呈现resources/views/errors/503.blade.php。我试图改变它的路径,但无法弄清楚异常处理和503响应在哪里。

2 个答案:

答案 0 :(得分:2)

所有http异常都由renderHttpException()

中的\Illuminate\Foundation\Exceptions\Handler.php方法处理
/**
 * Render the given HttpException.
 *
 * @param  \Symfony\Component\HttpKernel\Exception\HttpException  $e
 * @return \Symfony\Component\HttpFoundation\Response
 */
protected function renderHttpException(HttpException $e)
{
    $status = $e->getStatusCode();

    if (view()->exists("errors.{$status}")) {
        return response()->view("errors.{$status}", ['exception' => $e], $status, $e->getHeaders());
    } else {
        return $this->convertExceptionToResponse($e);
    }
}

我假设您要显示该503异常的自定义视图。在这种情况下,只需在resources / views / errors中创建自己的503.blade.php文件。

答案 1 :(得分:-1)

诸如find and replace app之类的一些工具对于在“ * .php,*,js”之类的文件中找到的文本很有用。是要在您的桌面上运行的可执行应用程序。

enter image description here