Apache에서 가상 호스트의 DocumentRoot를 수정하려고합니다. 가상 호스트의 DocumentRoot 설정이 무시되고 대신 전체 DocumentRoot가 사용됩니다.Apache가 DocumentRoot를 무시합니다.
제 경우에는/Applications/AMPPS/www/public을 루트 폴더로 사용하는 대신 Apache는/Applications/AMPPS/www를 사용합니다.
httpd.conf 파일의 관련 부분이 아래에 나와 있습니다. 누구에게 문제가 있습니까?
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/Applications/AMPPS/www"
...snip...
<VirtualHost 127.0.0.1:80>
<Directory "/Applications/AMPPS/www">
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
allow from All
</Directory>
ServerName localhost
ServerAlias localhost 127.0.0.1
ScriptAlias /cgi-bin/ "/Applications/AMPPS/www/cgi-bin/"
DocumentRoot "/Applications/AMPPS/www/public"
ErrorLog "/Applications/AMPPS/apache/logs/error_log"
CustomLog "/Applications/AMPPS/apache/logs/access.log" combined
</VirtualHost>