Laravel 8 重定向
重定向响应是 Illuminate\Http\RedirectResponse
类的实例,并且包含用户需要重定向至另一个 URL 所需的头信息。Laravel 提供了几种方法用于生成 RedirectResponse
实例。其中最简单的方法是使用全局辅助函数 redirect
:
Route::get('dashboard', function () {
return redirect('home/dashboard');
});
有时候你可能希望将用户重定向到之前的位置,比如提交的表单无效时。这时你可以使用全局辅助函数 back
来执行此操作。由于这个功能利用了 session,请确保调用 back
函数的路由使用 web
中间件组或所有 Session 中间件:
Route::post('user/profile', function () {
// Validate the request...
return back()->withInput();
});
Route::post('user/profile', function () {
// Validate the request...
return back()->withInput();
});