我无法通过终端上的curl命令访问我的本地主机
curl -I 127.0.0.1 gives
curl: (7) Failed to connect to 127.0.0.1 port 80: Connection refused
而
curl -I example.com is working fine
我的主机文件下面给出任何想法?
127.0.0.1 localhost
127.0.1.1 jordanism
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
最佳答案
如果我的本地网络服务器未运行,我只会收到此消息。否则它工作正常。我的主机文件与您的相同。
您是否更改了Web服务器的配置?
关于linux - 无法通过Ubuntu中的curl命令访问localhost?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43318861/