Shuvo
Shuvo

Reputation: 303

Change Base URL in Laravel 5.5

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

Answers (1)

FullStackOfPancakes
FullStackOfPancakes

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

Related Questions