forked from lyshfire/ThinkPhpStudy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
64 lines (44 loc) · 1.86 KB
/
admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <[email protected]>
// +----------------------------------------------------------------------
// 应用入口文件
// 检测PHP环境
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
define('APP_DEBUG',True);
/**
* 绑定Home模块到当前入口文件(3.2.1以上版本写法)
* old:http://serverName/index.php/Home/Index/index
* new:http://serverName/home.php/Index/index
*/
//define('BIND_MODULE','Home');
/**
* 绑定Index控制器到当前入口文件(3.2.1以上版本写法)
* old:http://serverName/index.php/Home/Index/index
* new:http://serverName/home.php/index
*/
//define('BIND_CONTROLLER','Index');
// 定义应用目录
define('APP_PATH',dirname(__FILE__).'/Backend/');
// 定义缓存目录
define('RUNTIME_PATH',dirname(__FILE__).'/Runtime/');
// 定义模板文件默认目录
define("TMPL_PATH",dirname(__FILE__)."/Tpl/");
// 定义oss的url
define("OSS_URL","");
// 定义Loger path
define("LOGGER_PATH",dirname(__FILE__)."/Logs");
//定义多媒体存放路径
define("MEDIA_PATH",dirname(__FILE__)."/Media");
// 定义CLI运行模式运行的项目路径
define('CLI_PATH',dirname(__FILE__)."\\");
// 引入ThinkPHP入口文件
require dirname(__FILE__).'/ThinkPHP/ThinkPHP.php';
// 亲^_^ 后面不需要任何代码了 就是如此简单