index.php 260 B

1234567891011
  1. <?php
  2. if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
  3. $uri = 'https://';
  4. } else {
  5. $uri = 'http://';
  6. }
  7. $uri .= $_SERVER['HTTP_HOST'];
  8. header('Location: '.$uri.'/dashboard/');
  9. exit;
  10. ?>
  11. Something is wrong with the XAMPP installation :-(