美文网首页
Thinkphp6教程1:安装、开启多应用模式

Thinkphp6教程1:安装、开启多应用模式

作者: fgxs | 来源:发表于2020-06-24 12:11 被阅读0次

    Thinkphp6安装

    thinkphp6必须安装composer才能安装,命令:

    composer create-project topthink/think demo
    

    Thinkphp开启多应用

    1. 刪除app目录下所有其他文件
    2. 安装多应用模式扩展
    composer require topthink/think-multi-app
    
    1. 创建前台、后台及公共应用
    php think build index
    php think build admin
    php think build common
    

    需要注意的是,注意:如果没有安装think-multi-app, 使用php think build xx会报错:Command "build" is not defined.

    相关文章

      网友评论

          本文标题:Thinkphp6教程1:安装、开启多应用模式

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