curl:check_http_headers
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
curl:check_http_headers [2016/07/01 23:50] – peter | curl:check_http_headers [2020/09/25 12:57] (current) – created 192.168.1.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Curl - Check HTTP Headers ====== | ====== Curl - Check HTTP Headers ====== | ||
- | < | + | < |
curl -Ls -o /dev/null -D - sharewiz.net | curl -Ls -o /dev/null -D - sharewiz.net | ||
</ | </ | ||
Line 10: | Line 10: | ||
- | Returns: | + | returns: |
- | < | + | < |
HTTP/1.1 200 OK | HTTP/1.1 200 OK | ||
Server: nginx | Server: nginx | ||
Line 24: | Line 24: | ||
</ | </ | ||
+ | ---- | ||
===== Alternative method ===== | ===== Alternative method ===== | ||
- | + | < | |
- | < | + | |
curl --head http:// | curl --head http:// | ||
</ | </ | ||
+ | returns: | ||
- | Returns: | + | < |
- | + | ||
- | < | + | |
HTTP/1.1 200 OK | HTTP/1.1 200 OK | ||
Server: nginx | Server: nginx | ||
Line 47: | Line 46: | ||
</ | </ | ||
+ | ---- | ||
+ | ===== Check any specific resource ===== | ||
+ | |||
+ | <code bash> | ||
+ | curl --head http:// | ||
+ | </ | ||
+ | |||
+ | ---- | ||
===== Dump document headers to a file ===== | ===== Dump document headers to a file ===== | ||
- | < | + | < |
curl --dump-header headers.txt http:// | curl --dump-header headers.txt http:// | ||
</ | </ | ||
+ |
curl/check_http_headers.1467417025.txt.gz · Last modified: 2020/07/15 09:30 (external edit)