http status code 200
Can any one please let me know the exact meaning of http st开发者_如何学Goatus code 200
.
Because, i have uploaded the file to a particular folder (NewsToday)
having protocol HTTPS
, but it does not post that file into that folder, instead shows an error status code 200
. Why? What i did the mistake i did?
It means:
The request sent by the client was successful.
More Info:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
Also post your code for us to see how you are doing it. Also, since you are doing it on secure protocol, make sure that you have openssl extension turned on.
The HTTP status code 200 means OK. It's not supposed to be an error. If you're interested, you can see a bunch of other HTTP status codes here.
精彩评论