htppを覚えよう
まずhtppは、ハッキング防止がない。
次にhtppsは、ウイルス対策やハッキング防止が何重にもある。
ソースコードを紹介しよう。
Basic認証
WWW-Authenticate: Basic realm="HIMITSU No PAGE"
HTTP/1.1 200 OK
Host: www.tohoho-web.com
Authorization: Basic abcdEFGhiJklM==
仮想ホスト
GET / HTTP/1.1
Host: www.tohoho-web.com
維持的接続
GET /aaa.html HTTP/1.1
Host: www.tohoho-web.com
Connection: Keep-Alive
GET /bbb.html HTTP/1.1
Host: www.tohoho-web.com
Connection: close
HTTP/1.1 200 OK
Content-Type: text/html
Content-Length: 1234
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
HTTP/1.1 200 OK
Content-Type: text/html
Content-Length: 1234
Keep-Alive: timeout=5, max=99
Connection: close