2016-10-05 3 views

Antwort

0

Gerade

return redirect()->to('http://www.away.com');

oder einfach

return redirect('http://www.away.com');

funktionieren sollte.


Von der Quelle von redirect:

* @param string|null $to 
* @param int  $status 
* @param array $headers 
* @param bool $secure 
* @return \Laravel\Lumen\Http\Redirector|\Illuminate\Http\RedirectResponse 
*/ 
function redirect($to = null, $status = 302, $headers = [], $secure = null) 
+0

Ah ok habe es gefunden. Ich habe eine IP-Adresse für die Umleitung verwendet (ohne http: //). – fillibuster