index.php 512 B

123456789101112131415
  1. <?php
  2. /* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  3. -- Index
  4. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
  5. if (file_exists(dirname(__FILE__) . '/index-load.php')) {
  6. include_once(dirname(__FILE__) . '/index-load.php');
  7. } else {
  8. $basename = pathinfo($_SERVER['PHP_SELF'], PATHINFO_DIRNAME);
  9. $basename = "/";
  10. $uri = (!empty($basename) && $basename != '/') ? $basename . '/application' : '/html/Login.html';
  11. header('Location: '.$uri);
  12. }
  13. ?>