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