Change Base URL in Laravel 5.5

北城余情 提交于 2019-12-11 17:42:10

问题


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?


回答1:


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');


来源:https://stackoverflow.com/questions/53601852/change-base-url-in-laravel-5-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!