| |
|
HTTP, rtfRFC
The basic HTTP request is made by telneting to port 80
and entering the command, terminated by two blank lines:
GET / HTTP/1.0
To get any specific file, include the relative URI
as the argument to the "get" command. This example
also shows the use of "Host:" for http 1.1 requests:
GET /icons/stamp.gif HTTP/1.1
Host: www.foo.com
|