【发布时间】:2017-12-11 18:01:19
【问题描述】:
我在 azure 获得了一台虚拟机,并正在尝试使其上拥有多个网站。但我不知道怎么做。我总是被发送到/var/www/rajohan.no/www index.html。当我输入 rajohan.no 我希望 /var/www/rajohan.no/www index.html 显示。当我输入 rajohan.no/test/ 我希望 /var/www/test.no/www 显示。这是我的配置文件
rajohan.no.conf
<Virtual *:80>
ServerName rajohan.no
ServerAdmin mail@rajohan.no
DocumentRoot /var/www/rajohan.no/www
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}access.log combined
</VirtualHost>
test.no.conf
<Virtual *:80>
ServerName rajohan.no/test/
ServerAdmin test@test.no
DocumentRoot /var/www/test.no/www
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}access.log combined
</VirtualHost>
【问题讨论】: