因为我是开发中的新手,所以我想知道如何在我的移动设备(I-phone)上访问xampp localhost时ai访问xampp的虚拟主机..而且我已经创建了虚拟主机
C:\xampp\apache\conf\extra/httpd-vhosts.conf
文件如下:
<VirtualHost yasir.com:80>
ServerAdmin postmaster@dummy-host2.localhost
DocumentRoot "C:/xampp/htdocs/yasir"
ServerName yasir.com
ServerAlias www.yasir.com
ErrorLog "logs/yasir.com-error_log"
CustomLog "logs/yasir.com-error_log" combined
</VirtualHost>
并添加了一行
127.0.0.1 yasir.com
in
C:\Windows\System32\drivers\etc\hosts
答案 0 :(得分:2)
我怀疑你会发现ngrok是最简单的解决方案。
修改本地主机文件只会影响单个PC,您还需要修改移动设备上的主机文件(这可能是不可能的)并指定PC的外部IP而不是127.0.0.1。被描述为工作。
首先将<VirtualHost yasir.com:80>
更改回<VirtualHost *:80>
并将您的ngrok域指定为ServerAlias
。