laravel 5.0 版本下,
public function render($request, Exception $e) { if ($e instanceof ModelNotFoundException) { $e = new NotFoundHttpException($e->getMessage(), $e); } if($e instanceof \Symfony\Component\Debug\Exception\FatalErrorException && !config('app.debug')) { //加上app.debug判斷是怕dubug關閉模式下暴露重要信息 return response()->view('errors.default', [], 500); //default換成你自定義的頁面 } return parent::render($request, $e); }
修改下面文件
修改pp/Exceptions/Handler.phpresources/views/errors/404.blade.php
參考:
官網評論