J'ai installé Zend Server et j'ai remarqué quelque chose comme ce qui suit a été ajouté à mon fichier 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>
Mais je n'arrive pas à comprendre la différence entre l' emplacement et l' annuaire . J'ai changé pour quelque chose comme ce qui suit, ce qui est plus logique pour moi, et cela fonctionne toujours:
<Location /ZendServer>
AllowOverride All
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
Puis-je conserver mes modifications ou dois-je les remettre telles quelles?