Skip to content

Instantly share code, notes, and snippets.

@firefoxrebo
Created September 13, 2012 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save firefoxrebo/3711755 to your computer and use it in GitHub Desktop.
Save firefoxrebo/3711755 to your computer and use it in GitHub Desktop.
XAMPP INDEX FILE
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/xampp/');
exit;
?>
Something is wrong with the XAMPP installation :-(
@syed183
Copy link

syed183 commented May 30, 2023

Something is wrong with the XAMPP installation :-( why it showing something wrong with installation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment