LARAVEL 5: 更改默认维护 (503) 查看路径
LARAVEL 5: Change default maintenance (503) view path
当服务器关闭时,对于每个请求都会抛出 MaintenanceModeException
并呈现 resources/views/errors/503.blade.php
。我正在尝试更改它的路径,但无法弄清楚异常处理和 503 响应在哪里。
所有http异常都由\Illuminate\Foundation\Exceptions\Handler.php
中的renderHttpException()
方法处理
/**
* 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 文件
当服务器关闭时,对于每个请求都会抛出 MaintenanceModeException
并呈现 resources/views/errors/503.blade.php
。我正在尝试更改它的路径,但无法弄清楚异常处理和 503 响应在哪里。
所有http异常都由\Illuminate\Foundation\Exceptions\Handler.php
renderHttpException()
方法处理
/**
* 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 文件