Can you please explain the different between http header and https 开发者_如何学Cheader. I need very brief explanation. What will we do using http/https header?.
Thanks
After the SSL negotiation, normal HTTP headers will travel inside the encrypted stream, so there is really no difference between the two.
http, https, ftp, etc are there to tell the server which protocol is being used, so it knows where to direct the request.
http is unencrypted, usually on port 80. https is encrypted with ssl, usually on port 443.
精彩评论