Error 403 in Localhost XAMPP

0

Well, always working everything normally in XAMPP in localhost, suddenly when starting XAMPP the same one returns me the 403 error, with this message:

Acesso Proibido!

Você não tem permissão para acessar o diretório requisitado. Pode não      existir o arquivo de índice ou o diretório pode estar protegido contra leitura.

Se você acredita ter encontrado um problema no servidor, por favor entre em contato com o webmaster.

Error 403

localhost
Apache/2.4.10 (Win32) OpenSSL/1.0.1h PHP/5.4.31

I checked what could have happened, I saw something related to VirtualHost, but I could not implement it successfully.

My http.conf

    
asked by anonymous 02.01.2016 / 23:18

1 answer

1

Solved using the solution found in Power-pixel

In httpd-xampp.conf, I changed the lines:

<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
    Require local
    ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

By

<LocationMatch "^/(?i:(?:xampp|licenses|webalizer|server-status|server-info))">
 Order deny,allow
 Deny from 212.124.114.48
 Allow from all

 ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
    
04.01.2016 / 11:24