Weird. curl follow redirect should work with `-L`. Maybe the server’s sending malformed headers?
Try `curl --raw -L` to see the unfiltered response. Also, `strace curl -L` if you’re on Linux—might show syscall fails.
If all else fails, `wget` is more forgiving with redirects.
Try `curl --raw -L` to see the unfiltered response. Also, `strace curl -L` if you’re on Linux—might show syscall fails.
If all else fails, `wget` is more forgiving with redirects.
