如果找不到路线,我想显示索引页。
我已经像这样修改了 App\Exceptions\Handler 但不起作用
public function render($request, Exception $exception)
{
if ($this->isHttpException($exception) || $exception instanceof UnauthorizedException) {
if ($exception->getStatusCode() == 404) {
return view('app.index');
}
}
return parent::render($request, $exception);
}
繁星coding