当前位置:Gxlcms > PHP教程 > 同一局域网内,智能设备如何访问到PC端的TP的接口

同一局域网内,智能设备如何访问到PC端的TP的接口

时间:2021-07-01 10:21:17 帮助过:33人阅读

设备和电脑处于同一网段,现有一个智能设备,需要访问到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
     Deny from all
< /Directory >

仍然没有权限。是不是跟防火墙有关系?
或者如果用电脑广播出WiFi,让设备连上WIFI,就不会出现这种情况了?

回复内容:

设备和电脑处于同一网段,现有一个智能设备,需要访问到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
     Deny from all
< /Directory >

仍然没有权限。是不是跟防火墙有关系?
或者如果用电脑广播出WiFi,让设备连上WIFI,就不会出现这种情况了?

Deny from all ? 改成allow from all 试试

  1. 看你手机的IP和电脑是不是在同一网段,同网段再用PC ping 你手机IP. 如果ping不通,说明路由器做了内网apr隔离,连不通的,有条件的可尝试PC建热点

  2. httpd配置,不要写死ServerName , 写*号

  3. 先把deny注掉,这是黑名单设置

应该能用把127.0.0.1改成你电脑的ip地址试试

人气教程排行