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"
변경 사항을 유지할 수 있습니까? 아니면 원래대로 되돌려 놓아야합니까?