Laravel5:在RouteCollection.php中重定向:: to()外链接NotFoundHttpException

时间:2016-07-28 08:52:59

标签: php laravel laravel-routing

我正在开发一个Laravel 5应用程序,我有这条路线

Route::get('/go','UrlController@index');

在这个UrlController.php中,我有这个索引方法

public function index(){
    return Redirect::to('www.google.com',302);
}

当我测试此网址时http://localhost:8000/go  它只是更改为http://localhost:8000/www.google.com并出现此错误NotFoundHttpException in RouteCollection.php line 161 那么问题是什么,谢谢

1 个答案:

答案 0 :(得分:3)

您应该在www.google.com

之前添加协议
public function index(){
    return Redirect::to('https://www.google.com',302);
}