Reputation: 303
I 'm trying to change the base URL http://myscreenclass.com/
to http://myscreenclass.com/home
. I changed the .env file and updated the config/app.php file as well. I tried to solve the issue many different ways, but nothing happens.
How can I change the URL?
Upvotes: 0
Views: 1724
Reputation: 1381
I am trying to change base URL http://myscreenclass.com/ to http://myscreenclass.com/home
May I suggest reading up on routing with Laravel? You can achieve this by adding this to your web routes file.
Route::redirect('/', '/home');
Upvotes: 5