A free and open-source book on ZF3 for beginners

Translation into this language is not yet finished. You can help this project by translating the chapters and contributing your changes.

2.10. Tener Multiples Sitios Virtuales

Cuando desarrollamos varios sitios web en la misma computadora necesitaremos crear varios sitios virtuales. Para cada sitio virtual necesitamos especificar un nombre de dominio (como site1.mydomain.com). Pero si aún no tenemos un nombre de dominio podemos especificar en su lugar un puerto diferente (veamos un ejemplo más abajo).

# Listen directive tells Apache to listen requests on port 8080
Listen 8080

<VirtualHost *:8080>
    ...
</VirtualHost>

Para acceder al sitio web escribimos en la barra de navegación del navegador web la URL http://localhost:8080 y luego presionamos Enter.

Después de editar el archivo de configuración del sitio virtual debemos reiniciar Apache para aplicar los cambios.


Top