首页 > 解决方案 > Laravel 8路由重定向到空白页面

问题描述

我尝试了几种不同的方法,但都没有成功。我得到一个空白页。从控制器中删除记录后,我想重定向到页面。Laravel 文档这样说;https://laravel.com/docs/8.x/routing#redirect-routes

Route::redirect('/here', '/there');

我有这个

Route::redirect('customers', 'customer' ); 

我也试过这个,但得到这个错误 Route [customers] not defined。

return redirect()->route('customers');

我的 web.php 中的路线如下所示。

Route::get('/customers', [CustomersController::class, 'index']);

标签: phplaravelredirectroutes

解决方案


推荐阅读