重定向URL
路由:
Route::get('itsolutionstuff/tags', 'HomeController@tags');
控制器:
public function home()
{
return redirect('itsolutionstuff/tags');
}
重定向回上一頁
public function home()
{
return back();
}
//或者
public function home2()
{
return redirect()->back();
}
重定向到命名路由
路由:
Route::get('itsolutionstuff/tags', array('as'=> 'itsolutionstuff.tags', 'uses' => 'HomeController@tags'));
控制器:
public function home()
{
return redirect()->route('itsolutionstuff.tags');
}
使用引數重定向到命名路由
路由:
Route::get('itsolutionstuff/tag/{id}', array('as'=> 'itsolutionstuff.tag', 'uses' => 'HomeController@tags'));
控制器:
public function home()
{
return redirect()->route('itsolutionstuff.tag',['id'=>17]);
}
重定向到控制器
public function home()
{
return redirect()->action('App\Http\Controllers\HomeController@home');
}
重定向到帶有引數的控制器
public function home()
{
return redirect()->action('App\Http\Controllers\HomeController@home',['id'=>17]);
}
使用會話資料重定向
我們還可以在控制器方法中用路由或url重定向時傳遞閃過的會話訊息,如下所示。
public function home()
{
return redirect('home')->with('message', 'Welcome to PHP.cn!');
}