Is HTTP/1.0 still in use?

后端 未结 7 1946
长发绾君心
长发绾君心 2020-12-10 00:53

Say one is to write an HTTP server/client, how important is it to support HTTP/1.0? Is it still used anywhere nowdays?

Edit: I\'m less concerned wit

相关标签:
7条回答
  • 2020-12-10 01:32

    I use it all the time when I'm telnet-ing to a server to verify connectivity or figure out why it's not working:

    $ telnet 192.168.1.1 80
    GET / HTTP/1.0\r\n
    \r\n
    
    ... 
    

    (Because making a 1.0 request doesn't require that I provide any extra headers).

    0 讨论(0)
提交回复
热议问题