是Laravel的新手,我刚刚完成了一个电子商务网站。我不知道如何托管它,在托管之前要删除什么。我需要有关如何部署Laravel的帮助。我已经搜索了谷歌教程但我仍然找不到我想要的东西。除此之外,我需要一个免费的域名和托管网站来托管之前进行测试。
答案 0 :(得分:0)
您可以使用https://www.000webhost.com/,它完全免费且易于部署。
重要的是要避免错误 1.在存储777上创建文件权限 2.将所有文件夹公开到public_html 3.如果public_html有任何问题,请将以下代码放在public_html / index.php
中$app->bind('path.public', function() {
return __DIR__;
});
After the line code
$app = require_once __DIR__.'/../bootstrap/app.php';
它将public_html文件夹作为您自己的公用文件夹。
在您的情况下,如何为 DIR 提供路径也取决于您。' /../ 如果public_html与您的其他文件夹位于同一文件夹中,例如(app,resources,routes,database等...) 4.我想你知道其他人员,比如创建数据库并导入你的数据库文件。
答案 1 :(得分:0)
I suggest using a vps, it will be much more secure, but you can always use shared hosting websites such as byethost, x10hosting, 000webhost, they will be less secure but can still get the job done.