码迷,mamicode.com
首页 > 其他好文 > 详细

虚拟主机配置方案(二)通过ServerName端,来区分不同的域名

时间:2014-09-16 14:04:10      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   文件   div   sp   

通过ServerName端,来区分不同的域名:

步骤:

1. 开发新的站点

2.在httpd-vhost.conf文件中添加配置:(此时配置和以前不同)

<VirtualHost *:80>
    DocumentRoot "E:/the_third_grade/Apache_workspace/text03"
    #这里指定域名
    ServerName www.songjs3.com
    DirectoryIndex my.html index.html index.htm index.php
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>

·添加了ServerName 一项

此时通过www.songjs3.com即可访问text03文件中的页面

 

虚拟主机配置方案(二)通过ServerName端,来区分不同的域名

标签:style   blog   http   color   io   os   文件   div   sp   

原文地址:http://www.cnblogs.com/songacm/p/3974647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!