-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
30 lines (25 loc) · 812 Bytes
/
Copy pathadmin.php
File metadata and controls
30 lines (25 loc) · 812 Bytes
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
<?php
// +----------------------------------------------------------------------
// |
// +----------------------------------------------------------------------
// | Copyright (c) 2012 http://www.yigaoboda.com All rights reserved.
// +----------------------------------------------------------------------
// | Author:
// +----------------------------------------------------------------------
if(!defined("ADMIN_ROOT"))
{
die("Invalid access");
}
require './system/common.php';
define('BASE_PATH','./');
define('THINK_PATH', './admin/ThinkPHP');
//定义项目å称和路å¾?
define('APP_NAME', 'admin');
define('APP_PATH', './admin');
// åŠ è½½æ¡†æž¶å…¥å£æ–‡ä»¶
require(THINK_PATH."/ThinkPHP.php");
//实例化一个网站应用实�
$AppWeb = new App();
//应用程åºåˆå§‹åŒ?
$AppWeb->run();
?>