3

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

4

1 回答 1

7

所有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 文件。

于 2016-11-21T16:58:52.657 回答