I have a Laravel site at example.com and a WordPress site at blog.example.com.
Everything works well except that I'd love to have the root (index page) of example.com show (but not redirect to) the root of blog.example.com.
How can the homepage of my Laravel site mirror the homepage of my blog without there being a redirect or the browser's URL changing?
Route::get('/', function () {
return redirect('https://blog.example.com');
});
Is there some way that Laravel could proxy the blog homepage?
Since both sites are hosted on the same Cloudways server (just in different folders), maybe I could use an alias of some kind?
P.S. The server uses Apache.