123456789101112131415161718192021222324 |
- <?php
- define('APP_PATH', __DIR__ . '/../application/');
- define('VENDOR_PATH', __DIR__ . '/../vendor/');
- if (!is_file(APP_PATH . 'admin/command/Install/install.lock')) {
- header("location:./install.php");
- exit;
- }
- require __DIR__ . '/../thinkphp/start.php';
|