为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

PHP
梵蒂冈之花 2023-09-22 17:31:40
如果找不到路线,我想显示索引页。我已经像这样修改了 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', '.*');


查看完整回答
反对 回复 2023-09-22
  • 1 回答
  • 0 关注
  • 83 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信