wamp配置端口访问

作者:谢高升 发布:2016-11-23 浏览:1952次

wamp64配置多个端口访问;


//打开conf目录 http.conf


Listen 0.0.0.0:80
Listen 0.0.0.0:8090
Listen [::0]:80



//httpd-vhosts.conf
<VirtualHost *:8090>
	ServerName localhost
	DocumentRoot c:/wamp64/www/test/
	<Directory  "c:/wamp64/www/test/">
		Options +Indexes +Includes +FollowSymLinks +MultiViews
		AllowOverride All
		#Require local
		Require all granted
	</Directory>
</VirtualHost>

重启服务

输入localhost:8090


标签: wamp64多端口