标签: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