美文网首页
laravel项目正式上线后需要做的操作

laravel项目正式上线后需要做的操作

作者: 乌云龙 | 来源:发表于2019-08-10 01:01 被阅读0次
    app_debug : false //关闭调试模式
    php artisan config:cache //配置缓存,生成:bootstrap/cache/config.php
    php artisan config:clear
    php artisan route:cache //路由缓存,生成:bootstrap/cache/routes.php
    php artisan route:clear
    php artisan optimize //优化,生成编译文件;
    php artisan clear-compiled  //仅在非调试环境下生成:bootstrap/cache/compiled.php
    

    相关文章

      网友评论

          本文标题:laravel项目正式上线后需要做的操作

          本文链接:https://www.haomeiwen.com/subject/pchljctx.html