我有一个laravel项目,我想将它上传到hostgator共享托管服务器。我正在根目录中克隆项目并将公共内容放在public_html的文件夹中。
我已经更新了配置 -
enter code here
require DIR . '/../../folder-name/bootstrap/autoload.php';
$app = require_once DIR . '/../../folder-name/bootstrap/app.php';
但我收到500内部服务器错误。
需要专家建议。
答案 0 :(得分:0)
打开public_html / index.php并设置:
require DIR.'/../folder-name/bootstrap/autoload.php';
$app = require_once DIR.'/../folder-name/bootstrap/start.php';
并将其放在首位:
ini_set('eaccelerator.enable', 0);
并设置storage
和folder-name
dir