#2.mvc目录结构创建
- 创建项目目录php_mvc
```cpp
|-core 框架核心目录
| |-App.class.php URL重写类
| |-Controller.class.php 所有控制器的基类
| |-MyException.class.php 用户自定义的错误异常类
| |-Model.class.php 数据库操作类 业务逻辑层
|-config 配置
| |-constants.php 项目常量文件
|-app 前台
| |-public 前台公共文件(js、css)
| |-controllers 存放所有的控制器目录
| |-Home.class.php
| |-Test.class.php
| |-models 存放所有的model类
| |-views 存放所有的页面
| | |-index index目录
| | | |-index.php 前台首页页面
| | |-error 错误目录
| | | |-error.php 错误页面
|-web 后台
| |-public 后台公共文件(js、css)
| |-controllers 存放所有的控制器目录
| |-Home.class.php 后台首页控制器
| |-models 存放所有的model类
| |-views 存放所有的页面
| |-index.php 项目后台入口文件,单一入口
| |-.htaccess 后台分布式配置文件
|-index.php 项目前台入口文件,单一入口
|-.htaccess 分布式配置文件
```