I have Zend Server installed and noticed something like the following was added to my httpd.conf file:
<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>
But I can't seem to understand the difference between Location and Directory. I changed to something like the following, which makes more sense to me, and it still works:
<Location /ZendServer>
AllowOverride All
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
Can I keep my changes or should I put it back the way it was?