=========================================================
CONFIGURAÇÃO APACHE - COPIE E COLE
=========================================================

PASSO 1: Abra este arquivo como ADMINISTRADOR:
C:\xampp\apache\conf\extra\httpd-vhosts.conf

PASSO 2: APAGUE TODO O CONTEÚDO e cole isso:

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot "C:/xampp/htdocs"
    <Directory "C:/xampp/htdocs">
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    ServerName Systhema.local
    ServerAlias *.Systhema.local
    DocumentRoot "C:/xampp/htdocs/Systhema"
    <Directory "C:/xampp/htdocs/Systhema">
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    ServerAlias *.localhost
    VirtualDocumentRoot "C:/xampp/htdocs/Systhema"
    <Directory "C:/xampp/htdocs/Systhema">
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

PASSO 3: No XAMPP Control Panel
- Stop Apache
- Start Apache

PRONTO! Agora http://asdfasdf.localhost/login vai funcionar!
=========================================================

