curl:track_web_redirects
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
curl:track_web_redirects [2019/11/27 00:15] – removed peter | curl:track_web_redirects [2020/09/25 13:11] (current) – created 192.168.1.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Curl - Track Web Redirects ====== | ||
+ | |||
+ | Sometimes a page may redirect to another resource. | ||
+ | |||
+ | By default CURL will not follow page redirections. | ||
+ | |||
+ | <code bash> | ||
+ | curl -v -Ls -o /dev/null sharewiz.net | ||
+ | </ | ||
+ | |||
+ | * -L | ||
+ | * -s | ||
+ | * -o FILE Write output to < | ||
+ | * -v | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | * Rebuilt URL to: sharewiz.net/ | ||
+ | * | ||
+ | * Connected to sharewiz.net (192.168.1.2) port 80 (#0) | ||
+ | > GET / HTTP/1.1 | ||
+ | > Host: sharewiz.net | ||
+ | > User-Agent: curl/7.47.0 | ||
+ | > Accept: */* | ||
+ | > | ||
+ | < HTTP/1.1 200 OK | ||
+ | < Server: nginx | ||
+ | < Date: Fri, 01 Jul 2016 23:27:56 GMT | ||
+ | < Content-Type: | ||
+ | < Content-Length: | ||
+ | < Last-Modified: | ||
+ | < Connection: keep-alive | ||
+ | < ETag: " | ||
+ | < Accept-Ranges: | ||
+ | < | ||
+ | { [16150 bytes data] | ||
+ | * Connection #0 to host sharewiz.net left intact | ||
+ | </ | ||
curl/track_web_redirects.1574813759.txt.gz · Last modified: 2020/07/15 09:30 (external edit)