Files
hztha.hkpgsow.cn/public/index.php
gaofeng 0b165153c6 提交
2026-05-13 10:44:29 +08:00

28 lines
896 B
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2019 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\App;
// [ 应用入口文件 ]
require __DIR__ . '/../vendor/autoload.php';
// 执行HTTP应用并响应
$http = (new App())->http;
$_SERVER['SCRIPT_NAME'] = '/tha/index.php';
$_SERVER['PHP_SELF'] = '/tha/index.php';
$response = $http->run();
$response->send();
$http->end($response);