ฉันติดตั้ง 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 /ZendServer>
AllowOverride All
Order Allow,Deny
Allow from 127.0.0.1
</Location>
Alias /ZendServer "C:\Program Files\Zend\ZendServer\GUI\html"
ฉันสามารถเก็บการเปลี่ยนแปลงของฉันหรือฉันควรจะนำมันกลับมาเหมือนเดิมหรือไม่?