首页 > Web开发 > 详细

apache配置多域名多站点记录

时间:2015-10-16 09:59:03      阅读:296      评论:0      收藏:0      [点我收藏+]

<VirtualHost *:80>
  DocumentRoot "/mnt/web/www.*.cn"
  ServerName www.*.cn
  ErrorLog "logs/www-error.log"
  CustomLog "logs/www-access.log" common
  <Directory "/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

<VirtualHost *:80>
  DocumentRoot "/mnt/web/m.*.cn"
  ServerName m.*.cn
  ErrorLog "logs/www-error.log"
  CustomLog "logs/www-access.log" common
  <Directory "/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

<VirtualHost *:80>
  DocumentRoot "/mnt/web/cb.*.cn"
  ServerName cb.*.cn
  ServerAlias  cb.*.cn cookbook.*.cn
  ErrorLog "logs/www-error.log"
  CustomLog "logs/www-access.log" common
  <Directory "/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

<VirtualHost *:80>
  DocumentRoot "/mnt/web/www.*.com.cn"
  ServerName www.*.com.cn
  ErrorLog "logs/www-error.log"
  CustomLog "logs/www-access.log" common
  <Directory "/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

apache配置多域名多站点记录

原文:http://www.cnblogs.com/shher/p/4884368.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!