我想要这个请求:
GET http://localhost:9999 HTTP/1.1
Accept: */*
Host: example.com
我怎样才能得到这个curl
?这需要单独设置主机和请求的 URI,但我只知道符号curl host/uri
...
答案1
您可以curl
使用以下-H
选项设置附加标头:
curl -H 'Host: example.com' -H 'Accept: */*' http://localhost:9999
我想要这个请求:
GET http://localhost:9999 HTTP/1.1
Accept: */*
Host: example.com
我怎样才能得到这个curl
?这需要单独设置主机和请求的 URI,但我只知道符号curl host/uri
...
您可以curl
使用以下-H
选项设置附加标头:
curl -H 'Host: example.com' -H 'Accept: */*' http://localhost:9999