我需要将一些旧链接重定向到新链接。 我已经尝试过了,但是没有用:
Route::redirect('/football-tipsters/{country}.html', 'standings/{country}.html', 301);
您知道如何更改它。我正在使用Laravel 5.7.6
谢谢!
答案 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');