我试图允许其他登录到路由器的IP地址为192.168.1的计算机访问该站点。
我已经对我的httpd-vhosts.conf文件进行了更改,如下所示:
<VirtualHost *:8081>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require 192.168.1
</Directory>
</VirtualHost>
但是,当我重新启动Wamp时,我只能运行3个服务中的2个。 Apache将无法启动。 我的语法有问题吗? 我还需要对httpd.conf文件进行更改吗?
谢谢
Wamp 3.1.4 64位Windows 10