mac屏蔽指定网站

作者: cx7 | 来源:发表于2019-02-12 12:34 被阅读0次

    为了增强工作的专注,需要屏蔽无关网站
    比如我将屏蔽掉斗鱼、淘宝这类网站
    打开/private/etc/hosts文件 sudo vim /private/etc/hosts
    修改前 :

    ##
    # 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
    

    在底部添加屏蔽的网站 格式是127.0.0.1 www.douyu.com

    修改后 :

    ##
    # 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
    127.0.0.1   www.douyu.com
    
    

    重启浏览器 尝试访问指定屏蔽网站


    image.png

    相关文章

      网友评论

        本文标题:mac屏蔽指定网站

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