## 框架加载
1. **/www/index.php**#所有nginx请求都会rewrite到此文件,如果nginx指定目录存在对应物理文件不会rewrite
2. **/config.php**#加载框架初始化变量定义,如框架根目录路径
3. **/fend/fend.php**#框架启动入口
1. auotload register
2. shutdown register
4. **/conf/cfg\_xxxx.php**#根据请求domain加载对应配置文件,此功能后期将会进行改进
5. **/conf/\*.php**#常量定义及其他配置加载内含db.php redis.php 所有在此目录文件自动加载
6. **/fend/acl.php**#实际请求router所在地,router到对应controller并调用此函数,如果没有指定函数默认调用controller->index()
1. ob\_start();
2. new Controller\_xxxx->methodxxxx()
3. ob\_end();
7. end #fpm清理所有变量