教程来自reallysnow,转载有些许更改
当你刷了类原生安卓系统或者使用Pixel时,会发现你的 WIFI 图标上一直都有个叹号,在设置会提示”此网络无法连接到互联网”。(实则正常使用,但是强迫症看他不爽,笑哭)
其实这个原因是因为国内网络绝大多数地区无法连接到Google,所以更换网址即可。
当然你也可以自己搭建
-教程如下
如果你是NGINX,直接在NGINX配置文件加入
location /generate_204
{
return 204;
}
如果你是Apache,安装rewrite模块并在.htaccess中加入如下
RewriteEngine On
RewriteCond %{REQUEST_URI} /generate_204$
RewriteRule $ / [R=204]
</IfModule>
我们用wget测试,返回204即成功(curl也行)
--2020-12-05 20:50:49-- https://reallysnow.top/generate_204
Resolving reallysnow.top (reallysnow.top)... 58.211.137.159
Connecting to reallysnow.top (reallysnow.top)|58.211.137.159|:443... connected.
HTTP request sent, awaiting response... 204 No Content
2020-12-05 20:50:51 (0.00 B/s) - 'generate_204' saved [0]
本文参考
https://blog.csdn.net/chitangli7842/article/details/100859524
https://blog.csdn.net/gsls200808/article/details/54574754
https://blog.starryvoid.com/archives/306.html