如何从lan中的其他计算机访问虚拟主机?

时间:2015-08-28 14:40:52

标签: apache lan vhosts

我在Windows 7上安装了wamp 2.5。我创建了一个虚拟主机,我可以在我的机器上正常访问。但是局域网中的其他所有机器都不断被禁止"禁止"错误。我在httpd-vhosts.conf上有这些设置。

<VirtualHost *:80>
    DocumentRoot "c:/wamp/www"
    ServerName localhost
    ServerAlias localhost
    <Directory  "c:/wamp/www">
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>

#virtualHost that I want to make available in LAN

<VirtualHost *:80>
DocumentRoot "c:/wamp/www/medenuncia/public"
ServerName medenuncia.local
<Directory  "c:/wamp/www/medenuncia/public">
    AllowOverride none
    Require all granted
</Directory>
</VirtualHost>

我已经搜过类似的问题,但没有一个对我有用。任何想法将不胜感激。

0 个答案:

没有答案