方案一:
在routes目录下找到web.php。
以下代码请务必放在最下面。否则会有问题。
Route::fallback(function () {
return redirect("/");
});
方案二:
在app/Exceptions/Handler.php文件中的render方法中添加几行代码
public function render($request, Exception $exception)
{
if($this->isHttpException($exception))
{
switch (intval($exception->getStatusCode())) {
// not found
case 404:
return redirect('/');
break;
// internal error
case 500:
return Response::view('custom.500',array(),500);
break;
default:
return $this->renderHttpException($exception);
break;
}
}
else
{
return parent::render($request, $exception);
}
}