Files
controls-web/index.php
2026-02-17 09:29:34 -06:00

12 lines
259 B
PHP

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