## 介紹
This7 框架使用單一入口訪問,所有的請求都是通過入口文件完成的。無論從安全性還是方法調用及文件加載方面都帶來了很高的便捷性。
## 文件
入口文件為 api/index.php
~~~
<?php
/**
* this7 PHP Framework
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright 2016-2018 Yan TianZeng<qinuoyun@qq.com>
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link http://www.ub-7.com
*/
//DEBUG調試器
define('DEBUG', true);
//XDEBUG調試器
define('XDEBUG', false);
// Autoload 自動載入
require './vendor/autoload.php';
// 路由配置
require './server/connector/conveyancer350afa1a04089a7d38a3c6e83d119689.php';
~~~