美文网首页辅助资料
访问 github.com 时,仓库的图片都无法显示

访问 github.com 时,仓库的图片都无法显示

作者: 豪冷 | 来源:发表于2019-12-27 10:03 被阅读0次

    解决办法:

    修改hosts文件

    1.打开一个文件夹
    2.command + shift + g
    3.输入/private/etc/hosts,前往
    4.先备份hosts文件,再修改
    5.文件内容是:

    ##
    # Host Database
    #
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    ##
    127.0.0.1   localhost
    255.255.255.255 broadcasthost
    ::1             localhost
    

    这里的操作是把最后一行删除,保存
    仓库的图片就能显示了


    然而

    头像却依旧没有显示

    找出未显示头像的URL(通过 fn + F12 进入调试模式)
    再去这个网站:https://www.ipaddress.com/
    解析出 IP 地址
    最后把IP 域名添加到 hosts文件中

    这里的操作是
    添加下面的内容最 hosts 文件最后

    # Github Start
    
    199.232.28.133 avatars0.githubusercontent.com
    199.232.28.133 avatars1.githubusercontent.com
    199.232.28.133 avatars2.githubusercontent.com
    199.232.28.133 avatars3.githubusercontent.com
    199.232.28.133 raw.githubusercontent.com
    199.232.28.133 raw.github.com
    
    # Github End
    

    相关文章

      网友评论

        本文标题:访问 github.com 时,仓库的图片都无法显示

        本文链接:https://www.haomeiwen.com/subject/iriroctx.html