从本地网络中的 PC 访问 Wamp 3.1

Access Wamp 3.1 from PC in local network

我知道有很多关于这个主题的问题,但我仍然无法让它发挥作用。

我已经在我的笔记本电脑上本地设置了一个 Wordpress 站点和该站点的虚拟主机(通过 Wamp 3.1),现在我想从同一网络上的另一台 PC 访问它。在本地主机上一切正常。

我的 httpd-vhosts.conf 文件如下所示:

# Virtual Hosts
#

#Wamp
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
 Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>

#Hp1
<VirtualHost *:80>
    ServerName hp1.local
    DocumentRoot "d:/wamp64/www/hp1"
    <Directory  "d:/wamp64/www/hp1">
Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
        Require ip 192.168.100.76
    </Directory>
</VirtualHost>

我已将 192.168.100.88 hp1.local(笔记本的 ip)添加到我的 PC 的主机文件中。 192.168.100.76 是我电脑的 ip。

我可以从我的笔记本 ping 我的电脑,反之亦然。

我尝试通过

访问该网站
http://192.168.100.88
and 
http://hp1.local

但无济于事。甚至不是 403 或任何东西,只是

Error: network timeout

编辑: 认为我已经尝试过:

Windows 防火墙可能会阻止来自 Apache 的传入连接。为 Wamp 的传入流量添加一个例外(或者只是将其关闭,但这样做不利于安全)。