Tengo instalado Zend Server y noté que algo como lo siguiente se agregó a mi archivo httpd.conf:
<Location /ZendServer>
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
<Directory "C:\Program Files\Zend\ZendServer\GUI\html">
AllowOverride All
</Directory>
Pero parece que no puedo entender la diferencia entre Ubicación y Directorio . Cambié a algo como lo siguiente, lo que tiene más sentido para mí, y aún funciona:
<Location /ZendServer>
AllowOverride All
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
¿Puedo mantener mis cambios o debo volver a ponerlos como estaban?