123456789101112131415 |
- <?php
- /* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
- -- Index
- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
- if (file_exists(dirname(__FILE__) . '/index-load.php')) {
- include_once(dirname(__FILE__) . '/index-load.php');
- } else {
- $basename = pathinfo($_SERVER['PHP_SELF'], PATHINFO_DIRNAME);
- $basename = "/";
- $uri = (!empty($basename) && $basename != '/') ? $basename . '/application' : '/html/Login.html';
- header('Location: '.$uri);
- }
- ?>
|