局域网访问其他机器php apache

局域网访问其他机器

wampserver提示You don't have permission to access / on this server

与D:\wamp\bin\apache\apache2.4.2\conf\httpd.conf对比了一下,最后才发现只需要在webdev.conf里面添加 Require local 即可,如下所示:

1

2

3

4

5

6

7

8

9

10

Alias /webdev/"d:/webdev/"

    

<Directory "d:/webdev/">

    Options Indexes FollowSymLinks MultiViews

    AllowOverride all

    Order allow,deny

    Allow from all

        

    Require local

</Directory>

最后重启一下apache即可。


另外,如果需要让局域网中的电脑通过IP访问你的网站,则需将 Require local 换成 Require all granted 即可。


你可能感兴趣的:(局域网访问其他机器php apache)