CentOS 5.11下 一个公网ip配置多个域名

我用的是华为云


首先多个域名都解析到公网IP,然后找到httpd.conf。我的是在/etc/httpd/conf,最后在httpd.conf底部加入下边代码

ServerName是你的域名

ServerAlias是带www和不带WWW的解析

DocumentRoot是你的网站目录

NameVirtualHost *:80  
 
  ServerName www.zhangbeilm.com  
  ServerAlias zhangbeilm.com *.zhangbeilm.com 
  DocumentRoot /var/www/html/zhangbeilm  
 
  
 
  ServerName www.hbxtsq.com
ServerAlias hbxtsq.com *.hbxtsq.com
  DocumentRoot /var/www/html  
 

最后重启Apace

service httpd restrat

 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
 

你可能感兴趣的:(CentOS,5.11)