我注册了两个域: example.com 和 example.org 。对于其中一个,我还注册了一个子域名: sub.example.com 。
我成功设法为我的子域sub.example.com设置虚拟主机。因此,example.com指向默认文档根/var/www
,sub.example.com指向/var/www/sub.example.com
。
但由于某种原因,我无法让example.org指向除默认文档根目录之外的任何内容。因此,example.com和example.org会导致同一个网站。我为example.org创建了一个虚拟主机,但Apache似乎没有注册它。
# /etc/apache2/sites-available/example.org
<VirtualHost *:80>
ServerAdmin admin@example.org
ServerName example.org
DocumentRoot /var/www/example.org
</VirtualHost>
答案 0 :(得分:0)
你启用了网站吗?
使用a2ensite example.org
,您可以启用您的网站。然后执行service apache2 reload
重新加载网站。