正在使用aliyun主机,运行centos6.4 64位系统,安装lamp环境后进行域名绑定。配置文件如下:
<VirtualHost *:80>
DocumentRoot /var/www/html
ServerName 120.24.54.xxx
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /var/www/html/domain1
ServerName domain.com
ServerAlias *.domain.com
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /var/www/html/domain2
ServerName domain.com
ServerAlias *.domain.com
</VirtualHost>
然后通过www.domain1.com
可以访问指向/var/www/html/domain1
目录的网站,但是通过www.domain1.com
访问同样是指向/var/www/html/domain1
,通过IP 120.24.54.xxx
访问也是指向domai1
目录,配置文件其他地方没动过。我想要通过IP访问就指向html
目录,通过域名访问就指向对应的目录。
Already found the answer by looking at the official documentation:
# Ensure that Apache listens on port 80
Listen 80
Must be turned on
NameVirtualHost *:80
, otherwise no matter how many domain names are bound, they will all point to the documentroot of the first virtualhostHave you restarted apache after modifying the configuration?
Are you sure your vhost mod is enabled?
DocumentRoot /var/www/html/domain1
ServerName domain.com
ServerAlias *.domain.com
DocumentRoot /var/www/html/domain2
ServerName domain.com
ServerAlias *.domain.com
Has this been changed?