Change Base URL in Laravel 5.5

前端 未结 1 930
野的像风
野的像风 2021-01-28 18:04

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

1条回答
  •  盖世英雄少女心
    2021-01-28 18:23

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

    0 讨论(0)
提交回复
热议问题