Apr 182011
Show HTTP response header using curl
Answer:
To show the response of HTTP request to a specific server, you can use the "curl -i" command.
Example:
# curl -i "http://www.example.com"
HTTP/1.0 302 Found
Location: http://www.iana.org/domains/example/
Server: BigIP
Connection: Keep-Alive
Content-Length: 0
Update: Thanks Robin Clowers for the update.