如何从其他设备访问服务器上运行的php网页?

时间:2020-06-26 21:18:16

标签: php apache webserver mamp httpd.conf

我当前正在使用MAMP来允许在浏览器中打开我的php文件。我可以在服务器上本地打开这些文件,方法是将服务器的IP地址放在URL中,例如http://172.26.10.189/test.php

但是,当我尝试从其他设备访问该页面时,该页面无法加载。我尝试在服务器防火墙上添加入站规则以允许连接到端口8080。我尝试使用Listen 172.26.10.189:8080修改\ apche \ httpd.conf文件。我还尝试完全禁用防火墙以查看是否发生了任何事情,但仍然无法从其他设备加载网页。

还有其他建议吗?还是知道我在做什么错? 谢谢!

1 个答案:

答案 0 :(得分:0)

您应该执行4个步骤

步骤1“将两个设备都连接到同一网络”: You'll need to connect both devices to the same network. So make sure your mobile phone is connected to the same Wi-Fi network that your computer is using.

步骤2“查找计算机的IP地址”:

For Windows, you can find the IP address by visiting Control Panel. In the search box, search for "adapter". Click on View Network Connections. Select the active network connection and click View status of this connection. Click Details and the IP address should be found next to IPv4 Address.

For Mac, open the Network Utility. You can find this quickly with Spotlight by typing cmd + space and then start typing "Network". With Network Utility open, your IP address can be found next to the label IP Address.

第3步“查找计算机的主机名”:

If you prefer, instead of using the IP address, you can use the hostname. This might be preferable so you don't have to keep looking up the IP address every time you change networks.

On Windows, click Start. Then right-click on Computer and select Properties. Then click the Computer Name tab.

On Mac, open System Preferences and click Sharing. Look for the text that reads: Computers on your local network can access your computer at: computer-name.local.

第4步“打开您的移动浏览器并访问IP地址或主机名”:

Using your mobile browser, simply type the IP address or host name into the URL bar. Make sure to include any necessary ports or paths required to view your website.

对不起,英语不好

相关问题