#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 分布式配置文件
```