You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
244 B
12 lines
244 B
<?php
|
|
|
|
// [ 应用入口文件 ]
|
|
|
|
// 定义运行目录
|
|
define('WEB_PATH', __DIR__ . '/');
|
|
|
|
// 定义应用目录
|
|
define('APP_PATH', WEB_PATH . '../source/application/');
|
|
|
|
// 加载框架引导文件
|
|
require APP_PATH . '../thinkphp/start.php';
|
|
|