Files
GseTDDUebungKCLR/database/htdocs/index.php
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

12 lines
260 B
PHP

<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/dashboard/');
exit;
?>
Something is wrong with the XAMPP installation :-(