原因:项目推到线上报错:.env配置也没问题
解决方法:使用xshell连接自己的服务器:找到项目目录 :
执行以下命令:
//清除配置缓存
php artisan config:clear
因为配置修改完成之后要更新一下。
//清除缓存
php artisan cache:clear
//清除路由缓存
php artisan route:clear
//清除页面缓存
php artisan view:clear
//清除编译缓存
php artisan clear-compiled
//清除配置缓存
php artisan config:clear
|