xampp配置多端口访问

  1.修改D:\xampp\apache\conf\extra中的httpd-vhosts.conf文件,在最底部添加   

<VirtualHost *:8080>
    ##需要监听的端口号
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "D:/xampp/htdocs/wqc/backend/web"
    ##这里是项目的入口文件地址
    ServerName localhost
    ##ErrorLog "logs/dummy-host2.example.com-error.log"
    ##CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>

  2.打开xampp,点击apache的config的httpd.conf.搜索Listen,找到Listen 80之后在下面添加

Listen 8080

  3.重启xampp

posted @ 2017-12-06 17:00  北纬95度  阅读(295)  评论(0编辑  收藏  举报