回覆列表
-
1 # 使用者5480262765187
-
2 # 我是董浩宇
hosts是一個沒有副檔名的系統檔案,可以用記事本等工具開啟,其作用就是將一些常用的網址域名與其對應的ip地址建立一個關聯“資料庫”,當用戶在瀏覽器中輸入一個需要登入的網址時,系統會首先自動從hosts檔案中尋找對應的ip地址,一旦找到,系統會立即開啟對應網頁,如果沒有找到,則系統再會將網址提交dns域名解析伺服器進行ip地址的解析。
操作方法
01
方法1:我們進入C:\Windows\System32\drivers\etc資料夾,然後新建一個記事本。
02
然後我們在記事本內輸入以下內容:
# 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 gilisoft.com
然後儲存。
03
04
方法2:我們按下WIN+R撥出執行選單,然後在執行選單中輸入:attrib %SystemRoot%\system32\drivers\etc\hosts -h -r -s
05
然後我們繼續在執行選單中輸入:notepad %SystemRoot%\system32\drivers\etc\hosts 這樣就可以開啟hosts檔案了。