Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Xampp 和 localhost(如 10.0.2.2)将我的网页加载到 Android 模拟器中的默认浏览器中。页面加载正常,但没有显示图像。
在浏览器设置中,在带宽管理下,“加载图像已打勾”。如果我进行图像搜索,Google 会显示图像。
关闭防病毒和防火墙没有任何区别。
感谢任何建议,谢谢。
为了其他遇到此问题的人的利益,在我的情况下,问题是由于 .htaccess 中旨在防止图像热链接的以下代码行:
RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?mydomain.com [NC]
我创建了一个进一步的规则,以便图像在我的本地主机上可用,如下所示:
RewriteCond %{HTTP_REFERER} !^http(s)?://localhost/etc [NC]
但我没有为运行 Android 模拟器的端口 10.0.2.2 创建规则。