如何在laravel5.2中设置基本路径?

时间:2018-06-01 06:45:08

标签: php url laravel-5.2 environment-variables

我是laravel的新人,我们如何在laravel中设置基本网址

我想要网址看起来像 https://localhost/projectfolder/site/home

但是当我点击链接时,它会转到

https://localhost/home

提前致谢

1 个答案:

答案 0 :(得分:1)

APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_URL='this is where you set the app url'

您可以在根项目文件夹中的.env文件中找到此设置。