The index file in Xampp redirects to the xampp folder. Change the default project
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
//CHANGE THIS LINE
header('Location: '.$uri.'/xampp/');
//header('Location: '.$uri.'/yourproject/');
exit;
?>
Something is wrong with the XAMPP installation :-(
OR put in the browser:
http: // localhost / YourProject /index.php
source
share