Signed-off-by: kevin <kevin@lmve.net>

This commit is contained in:
2023-06-22 20:21:24 +08:00
parent 3cfcc26955
commit abe7f07a03
2 changed files with 13 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
defined('IN_TS') or die('Access Denied.');
// 管理入口
$path='app/' . $TS_URL['app'] . '/action/admin/' . $mg . '.php';
//echo $path;
if (is_file($path)) {
include_once $path;
} else {
qiMsg('sorry:no index!');
}