Eu tenho o Zend Server instalado e notei que algo como o seguinte foi adicionado ao meu arquivo 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>
Mas não consigo entender a diferença entre local e diretório . Mudei para algo como o seguinte, o que faz mais sentido para mim e ainda funciona:
<Location /ZendServer>
AllowOverride All
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
Posso manter minhas alterações ou devo colocá-las de volta do jeito que estavam?