
A modern and responsive interface that optimizes your productivity by making it easier to access projects in the XAMPP htdocs folder.

Uma interface moderna e responsiva que otimiza sua produtividade facilitando o acesso aos projetos na pasta htdocs do XAMPP.
- Automatic listing of projects in
htdocs - Quick access via click
- Listagem automática de projetos em
htdocs - Acesso rápido por clique
- Visualização em tempo real
- Download the project
- Move the
myXamppfolder to thehtdocsdirectory of your XAMPP server - Replace all code in the existing
htdocs/index.phpwith the code below
- Baixe o projeto
- Extraia o arquivo ZIP
- Mova a pasta
myXampppara o diretóriohtdocsdo servidor XAMPP - Substitua todo o código do arquivo
htdocs/index.phppelo código abaixo
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/myXampp/');
exit;
?>
Something is wrong with the XAMPP installation :-(