有时候我们配置好Wamp后,需要让内网其他机器访问主机,其实实现比较简单,只需要改动两个部分就可以了。默认的时候访问不了主要是因为在设置里面Require Local,只允许本地访问,然后改成允许其他访问Require all granted即可
1. 更改httpd.conf文件
首先需要确定需要被访问的文件的目录在哪里,比如HTML文件在C:\wamp64\www 下,所以需要找到设置里的Directory,改成:
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
2. 更改httpd-vhost.conf文件
同理,在这个里面改一下,然后还需要把ServerName改成被访问的主机IP:
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
# Virtual Hosts
#
<VirtualHost *:80>
ServerName 被访问的主机IP,比如192.168.88.88
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>