XAMPP 7.4.25 Configuración de VHOST en ambiente de desarrollo
http://localhost/dashboard/docs/configure-vhosts.html
https://stackoverflow.com/questions/3660066/hosting-multiple-local-sites-with-xampp
Configuración:
1. Agregar las siguientes líneas en el archivo C:\xampp\apache\conf\extra\httpd-vhosts.conf
<VirtualHost *:80>
#ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
ErrorLog "logs/localhost"
CustomLog "logs/localhost.log" common
</VirtualHost>
<VirtualHost *:80>
#ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "C:/07_Workspace_php"
ServerName workphp
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory C:/07_Workspace_php>
Options Indexes FollowSymLinks
# this prevent.htaccess reading, remove if you want .htaccess
AllowOverride None
# allow web access
AllowOverride none
Require all granted
</Directory>
ErrorLog "logs/workphp"
CustomLog "logs/workphp.log" common
</VirtualHost>
2. Agregar la siguiente línea en el archivo C:\Windows\System32\drivers\etc\hosts
127.0.0.1 workphp
3. Reiniciar el servicio de Apache.
Comentarios
Publicar un comentario
Incluye información que aporte al tema