zoukankan      html  css  js  c++  java
  • 本地计算机绑定域名访问

      我们知道localhost绑定的是本地主机IP(127.0.0.1),那么我们能不能自定义绑定本地主机IP地址呢?答案是肯定的,同修改hosts文件,我们可以实现上面的需求。

      打开本地C盘,找到Windows文件夹-->System32文件夹-->drivers文件夹-->etc文件下的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       m.hpugs.com

      红色部分即为我设置的绑定本地IP的域名(域名可以随意设置)

  • 相关阅读:
    jQuery里$.post请求,后台返回结果为“json”格式,前台解析错误问题记录
    传真机传真外地拨号后提示号码不正确问题
    web.xml里,classpath使用范围
    几种排序的算法
    随机红包
    python小练习
    unitest
    自动化测试模型
    WebDriver API
    Android monkey
  • 原文地址:https://www.cnblogs.com/AndroidJotting/p/7801203.html
Copyright © 2011-2022 走看看