To redirect the home page to another page. On your Hosting/VPS, open the file: components\routes\web.php
Then change
Route::get('/', Home::class)->name('home');
to
Route::get('/', function () {
    return \Illuminate\Support\Facades\Redirect::to('https://www.google.com');
})->name('home');
Replace https://www.google.com with the website you want and save.
Happy using SumoWebTools!