设备和电脑处于同一网段,现有一个智能设备,需要访问到thinkphp的接口。
正常在电脑上访问这个接口是:http://localhost/demo/index.php/C/A
或者:http://127.0.0.1/demo/index.php/C/A
那么智能设备怎么才能访问到接口呢?
尝试过用IP访问,但是会出现:You don't have permission to access on this server.
修改过Apache的httpd.config文件:
< Directory / >
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
< /Directory >
仍然没有权限。是不是跟防火墙有关系?
或者如果用电脑广播出WiFi,让设备连上WIFI,就不会出现这种情况了?
天蓬老师2017-04-10 17:19:28
打开httpd.conf文件
<Directory />
AllowOverride none
Require all denied
</Directory>
修改成:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
Satisfy all
</Directory>
<Directory "e:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride all
Require local
</Directory>
修改成:
<Directory "e:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Allow from all
</Directory>
重启apache服务,关闭防火墙就可以了。之前有想到可能是防火墙问题,但是一直没去关闭......
PHP中文网2017-04-10 17:19:28
看你手机的IP和电脑是不是在同一网段,同网段再用PC ping 你手机IP. 如果ping不通,说明路由器做了内网apr隔离,连不通的,有条件的可尝试PC建热点
httpd配置,不要写死ServerName , 写*号
先把deny注掉,这是黑名单设置