wamp使用局域网ip地址访问web
记录一个小插曲,安装wamp环境的时候wampserver3.3.0_x64版本一直提示系统问题,后来发现是虚拟机的win2008版本安装不了3.3.0的,然后就重新装了win2012,安装完后测试web服务的时候发现只能在虚拟机本机访问,在其他电脑使用ip是访问不了的,所以就有了这篇文章。
一、关闭防火墙
正常一般是放行端口就行了,为了省事我直接关闭了防火墙。
二、配置wamp中apache的配置文件
修改wamp64binapacheapache2.4.37confextrahttpd-vhosts.conf配置文件,可以参考下面这种,ServerName、ServerAlias 这些可以注释掉,主要是要有AllowOverride All Require all granted这两句(默认安装完应该是没有这两行配置的)。
# Virtual Hosts
#
<VirtualHost *:80>
#ServerName 192.168.2.112
#ServerAlias 192.168.2.112
#ServerName localhost
#ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
三、访问测试
虚拟机网路模式我配置的是桥接模式,这样跟真机就在同一个局域网了。
基于互联网精神,在注明出处的前提下本站文章可自由转载!
本文链接:https://ranjuan.cn/wamp-ip-apache/
赞赏
微信赞赏支付宝赞赏
发表评论