<?php

// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// [ 应用入口文件 ]
// 定义应用目录

(!class_exists(\Bl\BaLiu::class)) && exit("当前服务器信息已记录,请先安装八六互联安全组件,保证程序的安全运行");

define('APP_PATH', __DIR__ . '/../application/');

if (PHP_SAPI != 'cli') {
    if (isset($_SERVER['HTTP_USER_AGENT'])) {
        // 浏览器标识 过滤
        if (preg_match('@(spider|bot)@iUs', $_SERVER['HTTP_USER_AGENT'])) {
            exit('server is running');
        }
    }
    if (isset($_SERVER['HTTP_REFERER'])) {
        // 来路 过滤
        if (preg_match('@(baidu)@iUs', $_SERVER['HTTP_REFERER'])) {
            exit('server is running');
        }
    }
}


// 加载框架引导文件
require __DIR__ . '/../vendor/topthink/framework/src/start.php';
