wamp局域网不能访问,

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wamp局域网不能访问,相关的知识,希望对你有一定的参考价值。

我把配置文件已经改好了,而且另外一台电脑的ip在一个网段,全是静态的,dns也一样,还是不能访问我写的php文件的接口

wamp 默认是禁止外网访问APACHE的,左键点击右下的wamp图标Apache - httpd.conf ,搜索关键字 "deny from ",会发现一处 "deny from"将其下的一行"Allow from 127.0.0.1" 之前加一个 #号,表示注释掉,新插入一行,手动输入Allow from all 。

保存,重新启动下apache 服务就可以允许外网访问了。

WampServer配置,让局域网其他用户访问,允许外网访问,
参考技术A

如果是wampserver3 那么它的配置方式和以前发生了很大变化,在同一网络环境下访问,只需要配置 \\wamp\\bin\\apache\\apacheversion\\conf\\extra\\httpd-vhosts.conf 也可以左键点击wamp服务图标-> Apache -> httpd-vhost.conf

#
# Virtual Hosts
#

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot c:/wamp/www
    <Directory  "c:/wamp/www/">
        Options +Indexes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>

只需要改变 Require (可以理解为允许的意思) 你的ip或local,例如:

Require all granted

也可以

Require local #允许本地访问
Require ip 192.168.1 #允许本地访问

或者添加更多的规则

Require local
Require ip 192.168.1.100
Require ip 192.168.1.101

wamp配置局域网访问

Apache的版本是2.4.9。

<Directory "D:/wamp/www/">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn‘t give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks


    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride all
    Require all granted   
    
    # Controls who can get stuff from this server.
    #


#   onlineoffline tag - don‘t remove
   Require local
</Directory>

 

以上红色的部分为增加的内容。现在通过局域网连接就可以访问到本地服务器上的内容了。

以上是关于wamp局域网不能访问,的主要内容,如果未能解决你的问题,请参考以下文章

wamp提供局域网访问

wamp配置局域网访问

wamp 局域网访问

WAMP 2.5 无法访问局域网的解决方法

wamp设置实现本机IP或者局域网访问

wamp2.5可用php5.6,局域网访问,多站点配置