我无法使laravel 5.7在共享主机上工作。
我尝试使用以下教程: -https://medium.com/laravel-power-devs/deploy-laravel-projects-on-shared-hosting-2008be6f6f03 -这也是https://medium.com/laravel-news/the-simple-guide-to-deploy-laravel-5-application-on-shared-hosting-1a8d0aee923e。
但是他们中没有一个解决了我的问题,即使关于同一主题的所有stackoverflow问题都没有帮助我。请帮忙。我花了1:30分钟以上,直到现在我还没有任何解决方法。
答案 0 :(得分:1)
public
文件夹的内容放入服务器的public_html
内project_support
,并将其放置在服务器的根目录中(public_html
的上一级)require __DIR__.'/../vendor/autoload.php';
更改为require __DIR__.'/../project_support/vendor/autoload.php';
$app = require_once __DIR__.'/../bootstrap/app.php';
更改为$app = require_once __DIR__.'/../project_support/bootstrap/app.php';
.env
。