Laravel 8 从旧 URL 重定向到新 URL

Laravel 8 redirect from old URL to New URL

我打算更改我所有的网站 URls .. 我制作了控制器和模型以在我的数据库中保存所有新旧 url

并将其添加到我的 web.php

Route::group(['namespace'=>'Redirections'],function(){
    $redirections=App\Models\Redirections::all();
    foreach($redirections as $r){
    Route::redirect($r->from,$r->to,$r->type, 301);
    }
});

我的项目 link 是 https://www.website.com/new-laravel

旧linkhttps://www.website.com/new-laravel/old

新 link https://www.website.com/new-laravel/old

我的问题重定向到 https://www.website.com/old

我该如何解决这个问题

我不认为将重定向放入数据库 table 是最好的方法。与仅在 web.php 路由文件中定义重定向相比,您将为每个重定向承担数据库调用的开销。

如果您的重定向像您的问题所建议的那样直接,在您的域根之后添加 new-laravel,您可以在 web.php 路由文件中执行以下操作。

// catch all routes that don't contain 'new-laravel'
Route::any('{all}', function (Request $request) {
    return redirect(url('/new-laravel/' . $request->path()), 301);
})->where('all', '^((?!new-laravel).)*$');

// create a route group to wrap and catch all your old routes
Route::group('/new-laravel', function () {
  Route::get('/old', function () {
    ...
  });
});

因此尝试访问 website.com/old 将重定向到 website.com/new-laravel/old 而无需数据库调用的开销。