<?php

/** * **************************************************************************************************
 * Changed: 入口文件
 * File   : index.php
 * Create : 2013-11-29 16:44
 * @changes ：2013-11-29 16:44
 * @author  : 娄莹 邮箱：a1049709658@163.com
 * @version ：v1.0
 * *************************************************************************************************** */
require_once 'config.php';
//$askString = file_get_contents(askstr);
//$askarr = explode("\r\n", $askString);
$SERVER_URL = 'https://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
/*
if(in_array($SERVER_URL, $askarr)){
     header("HTTP/1.1 404 Not Found");
     header("Status: 404 Not Found");
     exit;
}*/
$app = new Application();
$app->run();
