我当地的laravel项目以
开头/ public / home 500(内部服务器错误)
代替加载所有视图。有什么建议吗? 我尝试了git stash来持续提交,.htaccess修改,清除视图和缓存,但它仍在继续。
答案 0 :(得分:2)
您可以尝试使用项目根目录中的以下命令更新权限和所有权。
在Nginx / Homestead上:
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
在Mac上:
sudo chgrp -R _www storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
如果一切都失败了:
sudo chmod -R 777 storage bootstrap/cache
答案 1 :(得分:0)
您是否已授予tmp文件夹777权限?或者删除
**storage/meta/compiled.php**
或尝试
ph**p artisan optimize**
在您应用的目录中