123456789101112131415161718192021222324252627282930 |
- <?php
- namespace think;
- require __DIR__ . '/../vendor/autoload.php';
- if(!file_exists(dirname(dirname(__FILE__)) . '/app/install/data/install.lock')){
- header('Location:/install.php');
- exit;
- }
- $http = (new App())->http;
- $response = $http->run();
- $response->send();
- $http->end($response);
|