如何使用模式匹配将旧链接重定向到新链接

时间:2019-01-13 18:30:32

标签: laravel laravel-5

我需要将一些旧链接重定向到新链接。 我已经尝试过了,但是没有用:

Route::redirect('/football-tipsters/{country}.html', 'standings/{country}.html', 301);

您知道如何更改它。我正在使用Laravel 5.7.6

谢谢!

1 个答案:

答案 0 :(得分:1)

Route::get('standings/{country}.html', function($country){

 return response();

})->name('route.to');

Route::get('/football-tipsters/{country}.html', function ($country) {

    return redirect(route('route.to', compact('country')));

})->name('route.from');