如果找不到路线,我想显示索引页。我已经像这样修改了 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);}
1 回答
繁星coding
TA贡献1797条经验 获得超4个赞
这是我的错误,我可以通过将所有请求植根到索引来完成同样的事情。
Route::get('/{any}', 'FrontEndController@index')->where('any', '.*');
- 1 回答
- 0 关注
- 83 浏览
添加回答
举报
0/150
提交
取消