快速上手
项目结构
.
├── app //Thinkphp8 应用目录
│ ├── admin //后台应用目录
│ ├── api
│ ├── common
│ ├── common.php
│ ├── index //前台应用目录
├── config
├── modules //插件目录
├── public //对外访问文件夹
│ ├── assets //静态资源文件
│ ├── favicon.ico
│ ├── index.html //后台入口
│ ├── index.php //入口文件
│ ├── static //资源目录
│ ├── uppload //上传文件目录
│ └── template //模版的资源文件
├── template //前台模版目录
│ └── cms
│ └── default //默认模版前台模版目录
模板需要与后台 CMS管理 > 栏目管理 中对应.
└── default //默认模版
├── about.html
├── base.html //基础布局模板
├── case.html
├── caselist.html
├── comm //共用模版目录(可放头部、底部等)
│ ├── comment.html
│ ├── foot.html
│ ├── head.html
│ └── nav.html
├── index.html //首页
├── job.html
├── joblist.html
├── message.html
├── message2.html
├── news.html
├── newslist.html
├── product.html
├── productlist.html
├── search.html
└── tag.html更新时间:2026-02-05 18:22:17
BadouCMS