First of all I went through the already asked question related xampp/htdocs/index.php. (eg.: this, this and this and may more other) But still cant reach the proper xampp/index.php file (or other way xampp/index.html). I would like to ask ( those who can reach the the following screen(s), which is displayed at 6:30 in this youtube tutorial ). Cause I can reach just the following schreen: which is displayed at 16:25 in this youtube tutorial.
the code what I see in my DEFAULT index.php
is this:
<?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 :-(
and I tried to modify this line: header('Location: '.$uri.'/dashboard/');
to header('Location: '.$uri.'/**xampp**/');
. (in the htdocs/xampp folder I tried to search for the page that is displayed in the tutorial that I linked first).
So ones again I want to reach somehow that screen that is displayed in the first tutorial, I went through all the folders in xampp folder but ther is no any that is redirecting to the proper searched site (most probably the newer versions does not consist this feature/ consist this features some other way).
Anyway I hope someone could help!