index.php 149 B

1234567
  1. <?php
  2. if (!is_file('./data/install.lock')) {
  3. header("location:public/install/install.php");
  4. exit;
  5. } else {
  6. header('Location: admin/');
  7. }