工具/开发环境

mac屏蔽指定网站

2019-02-12  本文已影响0人  cx7

为了增强工作的专注,需要屏蔽无关网站
比如我将屏蔽掉斗鱼、淘宝这类网站
打开/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
上一篇下一篇

猜你喜欢

热点阅读