作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当服务器关闭时,每个请求都会抛出 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 异常显示自定义 View 。在这种情况下,只需在 resources/views/errors 中创建自己的 503.blade.php 文件。
关于拉拉维尔 5 : Change default maintenance (503) view path,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40725037/
我正在使用 git clone 部署我的 Laravel 项目并使用 git pull 进行更新 它工作正常,但每次部署时,我都必须从 config/app.php providers 数组和 ali
我是一名优秀的程序员,十分优秀!