123456789101112131415161718192021222324252627282930 |
- <?php
- define('APP_PATH', __DIR__ . '/../application/');
- require __DIR__ . '/../thinkphp/base.php';
- \think\Route::bind('\app\admin\command\Install', 'controller');
- \think\App::route(true);
- \think\Url::root('');
- \think\App::run()->send();
|