Laravel, how to redirect as 301 and 302

后端 未结 6 1227
轮回少年
轮回少年 2021-02-02 06:46

I cannot find info for redirecting as 301/302 in the Laravel docs.

In my routes.php file I use:

Route::get(\'foo\', function(){ 
    return Redirect::to(         


        
6条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-02 07:00

    You can define a direct redirect route rule like this:

    Route::redirect('foo', '/bar', 301);
    

提交回复
热议问题