Apps Flashcards
1
Q
anatomy of a status line
A
HTTP 1.1 200 ok (200=status code, ok=reason phrase)
2
Q
status HTTP 1.1 code 200 ok
A
document found
3
Q
status code HTTP 1.1 302 found
A
document located somewhere else
4
Q
status code 1, 2, 3, 4, 5
A
2 = ok, 3=do something different technically to get document, 4=error on browser side, 5=error on server side
5
Q
status code HTTP 1.1 404 not found
A
doc not found
6
Q
status code HTTP 1.1 500 found
A
server broke trying to find
7
Q
connect to site with telnet
A
telnet www.website.com 80
GET / HTTP/1.0 (1.0 closes connection for you. 1.1 keeps connection open)