我使用本地laravel 5對窗口..我正在嘗試的頁面重定向到一些外部url..but似乎沒有任何幫助我..如何重定向到laravel URL 5.0
我試圖
return \Response::make('',302)->header('Location','http://site2');
return redirect()->away("http://site2");
\Redirect::to('http://site2');
header('Location: http://site2');
但他們沒有working..gives沒有反應..
調查結果: 重定向到外部URL的核心php函數 return header('Location:http://someurl.com'); 不在laravel內工作.. :) –