我已经安装了Zend Server,并注意到以下内容已添加到我的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>
但是我似乎无法理解Location和Directory之间的区别。我更改为以下内容,这对我来说更有意义,并且仍然有效:
<Location /ZendServer>
AllowOverride All
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
我可以保留更改还是应该恢复原样?