<?php
// if($_GET['m'] && $_GET['c']){
    if($_SERVER['SERVER_NAME']=="www.ylrhome.cn"&&($_GET['m']!="content" || $_GET['c']!="index")){header("location: /404.html");die; }//屏蔽执行其他php入口

    define('PHPCMS_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
//禁止写入执行文件
    if(strstr($_SERVER['REQUEST_URI'],"file_put_content") || strstr($_SERVER['REQUEST_URI'],"@eval(")){
        echo "非法参数";die;
    }
//关闭member用户功能
    if($_GET['m']=="member"){echo "member功能已关闭,请联系管理员";die; }
    include PHPCMS_PATH.'/phpcms/base.php';
//纯下载站的入口文件增加代码，禁止外人POST数据和上传文件
//	if(file_get_contents("php://input") || (isset($_POST) && count($_POST)>0) ||  (isset($_FILES) && count($_FILES)>0)){
//	    if ($_SERVER['SERVER_NAME'] != substr($_SERVER['HTTP_REFERER'], 7, strlen($_SERVER['SERVER_NAME']))) exit('no upload');
//	}
    pc_base::creat_app();
// }else{
//     // +----------------------------------------------------------------------
// 	// | 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>
// 	// +----------------------------------------------------------------------

// 	// [ 应用入口文件 ]
// 	if($_GET['s'] == '/index'){
		 
// 		die;
// 	}
// 	header('Content-Type:text/html;charset=utf-8');
// 	// 检测PHP环境
// 	if(version_compare(PHP_VERSION,'5.5.0','<'))  die('PHP版本过低，最少需要PHP5.5，请升级PHP版本！');

// 	// 定义应用目录
// 	define('APP_PATH', __DIR__ . '/application/');

// 	// 定义入口为admin
// 	define('ENTRANCE', 'index');

// 	// 检查是否安装
// 	if(!is_file(APP_PATH.'install/install.lock')) {
// 		define('BIND_MODULE', 'install');
// 	}

// 	// 加载框架引导文件
// 	require __DIR__ . '/thinkphp/start.php';
// } 





