What is HTTP ?

HTTP
HTTP
  • HTTP stands for Hypertext Transfer Protocol.
  • It is related to Web Concepts and data transmissions over the network.
  • A protocol to handle data transfer between browser and server.
  • URL starts with “http://” if http.
  • HTTP is not secured.
  • HTTP send data over the port 80.
  • There is no need of SSL certificated for HTTP.
  • There is no encryption happens before sending the data from the browser.
  • The people tracking out network can see all the data we are sending.
  • We must use HTTPS instead of HTTP to make secure data transmission.

Leave a Reply