求高手呀,怎样关闭一个网站 让它打不开
怎样在家庭电脑里关闭一个网站,让那个网站打不开。
- 提问者网友:辞取
- 2021-04-30 23:50
- 五星知识达人网友:有你哪都是故乡
- 2021-05-01 00:57
你可以试试host劫持,C:\Winnt\System32\Drivers\Etc这个目录里面有个hosts文件,用记事本打开,在里面添加一行
127.0.0.1 要屏蔽的网站
比如
127.0.0.1 www.baidu.com
这样百度就上不了了
- 1楼网友:舊物识亽
- 2021-05-01 01:57
修改Hosts文件,解析到127.0.0.1就行。
Host文件通常位于C:\WINDOWS\system32\drivers\etc下,是一个无扩展名的系统文件。
可以用记事本打开并修改。
其内容大致如下:
# Copyright (c) 1993-1999 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed by the corresponding host name. # The IP address and the host name should be separated by at least one # space. # # Additionally, comments (such as these) may be inserted on individual # lines or following the machine name denoted by a '#' symbol. # # For example: # # 102.54.94.97 rhino.acme.com # source server # 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost
语法格式为:
转往的IP地址 被转向的域名
例如您要屏蔽百度贴吧,则在hosts文件最下方输入
127.0.0.1 tieba.baidu.com
第一个就对了~
不过要注意,360卫士或者其他一些杀毒软件或者防火墙可能会禁止修改这个文件,到相应的地方取消掉,或者暂时关闭它们就可以~
- 2楼网友:青尢
- 2021-05-01 01:11