我正在开发一个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
那么问题是什么,谢谢
答案 0 :(得分:3)
您应该在www.google.com
之前添加协议public function index(){
return Redirect::to('https://www.google.com',302);
}