WampServer3环境下配置虚拟主机_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > WampServer3环境下配置虚拟主机

WampServer3环境下配置虚拟主机

 2016/10/19 5:33:44  lzs2014193  程序员俱乐部  我要评论(0)
  • 摘要:准备:下载WampServer3安装包并安装成功(建议下载新版本,老版本Bug太多文件路径设置杂乱)1.在apache的conf目录找到http.conf文件,去掉下面两项设置前面的#号#LoadModulevhost_alias_modulemodules/mod_vhost_alias.so#Includeconf/extra/httpd-vhosts.conf2.在Listen0.0.0.0:80下面再添加一个Listen0.0.0.0:8088端口(实现多端口配置)3
  • 标签:Server 配置 虚拟主机 主机
准备:下载WampServer3安装包并安装成功(建议下载新版本,老版本Bug太多文件路径设置杂乱) 1.在apache的conf目录找到http.conf文件,去掉下面两项设置前面的#号 #LoadModule vhost_alias_module modules/mod_vhost_alias.so #Include conf/extra/httpd-vhosts.conf 2.在Listen 0.0.0.0:80下面再添加一个Listen 0.0.0.0:8088端口(实现多端口配置) 3.在conf\extra文件夹下找到httpd-vhosts.conf文件,首先保留服务器原始路由 ?
class="xml">NameVirtualHost *:80
<VirtualHost *:80>
	ServerName localhost
	DocumentRoot D:/wamp64/www
	<Directory  "D:/wamp64/www/">
		Options +Indexes +Includes +FollowSymLinks +MultiViews
		AllowOverride All
		Require local
	</Directory>
</VirtualHost>
? 3.1 在其下添加下面标签的虚拟主机设置 (zendStudio12.5是我的workspace文件夹,wamp64是我的安装路径)
<VirtualHost *:8088>
	ServerName  zendstudio125.com
        ServerAlias www.zendstudio125.com
	DocumentRoot D:/wamp64/zendStudio12.5
	<Directory  "D:/wamp64/zendStudio12.5/">
		Options +Indexes +Includes +FollowSymLinks +MultiViews
		AllowOverride All
		Require local
	</Directory>
</VirtualHost>

<VirtualHost *:80>
	ServerName  zendstudio125.com
        ServerAlias www.zendstudio125.com
	DocumentRoot D:/wamp64/zendStudio12.5
	<Directory  "D:/wamp64/zendStudio12.5/">
		Options +Indexes +Includes +FollowSymLinks +MultiViews
		AllowOverride All
		Require local
	</Directory>
</VirtualHost>
?4.在系统目录C:\Windows\System32\drivers\etc下找到hosts文件并在其中添加上面指定的域名 ? ? 127.0.0.1 zendstudio125.com??(最重要的一步,保存退出) PS.这一步指定域名非常重要,看到网上有很多配置介绍都没有重点强调要修改系统文件这一步, ? ?有了这步指定,浏览器才能把域名解析到apache对应的虚拟主机设置 5.重启apache服务,在zendstudio12.5文件夹下新建test.php文件,测试如下语句 <?php echo 'This dirname is '.dirname(__FILE__); //结果显示:This dirname is D:\wamp64\zendStudio12.5 说明虚拟主机设置成功! Tips:在浏览器中输入http://zendstudio125/test.php
发表评论
用户名: 匿名