Laravel 4: Redirect to a given url

后端 未结 5 1296
一生所求
一生所求 2020-12-25 10:28

Is there a method in Redirect class of laravel where the parameter is a complete url? We all know parameters to these methods are just route name,action, slash,..etc but wha

5条回答
  •  梦谈多话
    2020-12-25 10:37

    This worked for me in Laravel 5.8

    return \Redirect::to('https://bla.com/?yken=KuQxIVTNRctA69VAL6lYMRo0');
    

    Or instead of / you can use

    use Redirect;
    

提交回复
热议问题