在 laravel 中显示 404 上的索引刀片

如果找不到路线,我想显示索引页。


我已经像这样修改了 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);

}


梵蒂冈之花
浏览 86回答 1
1回答

繁星coding

这是我的错误,我可以通过将所有请求植根到索引来完成同样的事情。Route::get('/{any}', 'FrontEndController@index')->where('any', '.*');
打开App,查看更多内容
随时随地看视频慕课网APP