[PHP] 破Laravel白屏问题
可能解决方法如下:
1、Nginx在配置文件中添加
location / {
try_files $uri $uri/ /index.php?$query_string;
}
2、app/storage的写入权限
chmod -R 777 app/storage
3、在根目录使用php artisan env来查找错误
参考:
https://blog.csdn.net/jimliu004/article/details/45154981