Github图片出不来终极解决方案

最近在github浏览项目介绍,发现图片都出不来,如下:


image.png

百度了一下,说是域名污染,那好,我们自己把域名重定向一下,修改hosts文件。以Mac设置为例:

1、终端输入命令:

sudo vi /etc/hosts

打开hosts文件,按 i 进入编辑模式

2、复制以下内容加入到hosts文件:

# GitHub
140.82.112.3 github.com
140.82.113.3 gist.github.com
199.232.68.133 assets-cdn.github.com
199.232.68.133 raw.githubusercontent.com
199.232.68.133 gist.githubusercontent.com
199.232.68.133 cloud.githubusercontent.com
199.232.68.133 camo.githubusercontent.com
199.232.68.133 avatars0.githubusercontent.com
199.232.68.133 avatars1.githubusercontent.com
199.232.68.133 avatars2.githubusercontent.com
199.232.68.133 avatars3.githubusercontent.com
199.232.68.133 avatars4.githubusercontent.com
199.232.68.133 avatars5.githubusercontent.com
199.232.68.133 avatars6.githubusercontent.com
199.232.68.133 avatars7.githubusercontent.com
199.232.68.133 avatars8.githubusercontent.com

esc退出编辑模式,按shit+:键输入wq! Enter键保存退出

image.png

3、核对IP地址

进入IPAddress.com 输入github.com

IP搜索

以此类推,每个域名对应的IP都核对一下,图片出不来就是IP和域名对应不上(即github.com域名对应的IP有可能不是140.82.112.3 ,域名固定配置,前面的IP地址要根据实际情况配置),手动改一下就好了~
如果还有其他图片出不来,打开开发工具看下日志

报错日志

把报错的域名对应的IP地址在hosts文件里配置一下就OK啦~

你可能感兴趣的:(Github图片出不来终极解决方案)