首页 > 代码库 > hosts 文件

hosts 文件

技术分享

使用sublime打开该文件,按照规定的格式修改,修改完成之后,保存该文件到桌面上,关闭sublime中的这个hosts文件,然后把桌面上的hosts文件覆盖掉这个etc下的hosts文件,即可生效。 

关键: 一定要有覆盖这一步,会用到管理员权限,同意即可。 这个方法可以将一些病毒的网站添加为127.0.0.1等,可以不打开他们,或者是一些实在没有办法绑架的网站,就可以用这个方法。

在hosts文件中看到的#是注释的语法,即将该行注释掉。如下:

# Copyright (c) 1993-2009 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# localhost name resolution is handled within DNS itself.#    127.0.0.1       localhost#    ::1             localhost#127.0.0.1 activate.adobe.com127.0.0.1       localhost223.6.248.220   www.hao123.com

 

 

可以看到其中的很多说明性文字显然不是用于控制的, 并且还说了很多的英文, 所以#代表的就是注释, 223.6.248.220 www.hao123.com 是我添加的, 即将域名www.hao123.com 和 223.6.248.220(这是博客园的ip),但是chrome浏览器会自动识别出错误。。。。。 所以还是不能成功。

hosts 文件