Tuesday, December 14, 2021

HTTP response code

Server sends http response code with http response header.
Every response code has individual meaning .
let see some of the status code-

100-199 ----Informational
200-299-----Successful
300-399-----Redirection
400-499-----Client error (ex-404 file not found)
500-599-----Internal server error(ex-500 internal server error)

No comments:

Post a Comment

Clean code chapter 3(Robert C.martin)

  Summary: --------  1. Functions should hardly ever be 20 lines long.  2.Keep blocks (inside if, else, while, for, etc.) short.  Ideally, j...