记:使用Wampserver运行php程序时在该局域网的手机访问提示You don't have permission to access / on this server.

来源:互联网 发布:法兰绒衬衫怎么洗 知乎 编辑:程序博客网 时间:2024/06/07 16:28

一、打开httpd-vhosts.conf文件


二、获取本机ip(假如我的本机ip为192.168.0.2)修改文件为

改前:

# Virtual Hosts
#


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


改后:

# Virtual Hosts
#

<VirtualHost *:80>
ServerName 192.168.0.2
DocumentRoot d:/wamp/www
<Directory  "d:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
Order allow,deny 
        Allow from all 
</Directory>
</VirtualHost>
#


阅读全文
0 0
原创粉丝点击