User Tools

Site Tools


curl:track_web_redirects

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
curl:track_web_redirects [2019/11/27 00:15] – removed petercurl: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.  To make CURL follow redirections use the **-L** option.
 +
 +<code bash>
 +curl -v -Ls  -o /dev/null sharewiz.net
 +</code>
 +
 +  * -L         Follow redirects
 +  * -s         Silent mode. Don't show progress meter or error messages. 
 +  * -o FILE    Write output to <file> instead of stdout
 +  * -v         Verbose
 +
 +returns:
 +
 +<code bash>
 +* Rebuilt URL to: sharewiz.net/
 +*   Trying 192.168.1.2...
 +* 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: text/html
 +< Content-Length: 28277
 +< Last-Modified: Thu, 30 Jun 2016 23:16:03 GMT
 +< Connection: keep-alive
 +< ETag: "5775a833-6e75"
 +< Accept-Ranges: bytes
 +
 +{ [16150 bytes data]
 +* Connection #0 to host sharewiz.net left intact
 +</code>
  
curl/track_web_redirects.1574813759.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki