码迷,mamicode.com
首页 > 其他好文 > 详细

xampp 虚拟机配置

时间:2014-07-22 00:32:35      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   文件   

目标:

本地某端口根目录映射到htdoc的一个位置

方法:

1.修改D:\xampp\apache\conf 下的httpd文件,给里面的virtual host增加监听端口

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 81
Listen 82

2.由httpd文件里面的配置可以看到,虚拟机的配置文件路径

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

3.去conf/extra/httpd-vhosts.conf增加虚拟机

NameVirtualHost *:82
<VirtualHost *:82>
    DocumentRoot "D:/xampp/htdocs/traffic-monitor"
</VirtualHost>

4.重启Apache 访问localhost:82 就可以啦

xampp 虚拟机配置,布布扣,bubuko.com

xampp 虚拟机配置

标签:style   blog   http   color   os   文件   

原文地址:http://www.cnblogs.com/it-snail/p/3858127.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!