php – ERR_ICANN_NAME_COLLISION使用url而不是ip with hosts文件

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – ERR_ICANN_NAME_COLLISION使用url而不是ip with hosts文件脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用laravel宅基并将“homestead.dev”重定向到“192.168.10.10”.我可以看到使用IP但不是“homestead.dev”的网站.

我收到此错误

ERR_ICANN_NamE_COLLISION

Pinging homestead.dev以127.0.53.53响应.
我也可以访问该网站:http://127.0.53.53:8000/.

我的家园.yaML

ip: "192.168.10.10"
memory: 2048
cpus: 1
PRovider: virtualBox

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: ~/Code
      to: /home/vagrant/Code

sITes:
    - map: homestead.dev
      to: /home/vagrant/Code/myApp/public

databases:
    - myApp

# blackfire:
#     - id: foo
#       token: bar
#       client-id: foo
#       client-token: bar

# ports:
#     - send: 50000
#       to: 5000
#     - send: 7777
#       to: 777
#       protocol: udp

主机文件

# 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
192.168.10.10   homestead.dev

解决方法

我终于解决了.问题出在hosts文件中.这篇文章帮助我解决了这个问题: https://serverfault.com/a/452269.

更改主机文件时,我移动并替换它,而不是复制和替换,因此权限已更改.

脚本宝典总结

以上是脚本宝典为你收集整理的php – ERR_ICANN_NAME_COLLISION使用url而不是ip with hosts文件全部内容,希望文章能够帮你解决php – ERR_ICANN_NAME_COLLISION使用url而不是ip with hosts文件所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。