Ugh, redirects are the worst. curl follow redirect verbose *should* show all steps, but sometimes intermediate hops get hidden if they’re super fast or cached.
Try `--proxy ""` to bypass any system proxy weirdness. Also, `strace -e trace=network curl -vL http://example.com` can show low-level network calls if you're *really* desperate.
Might be overkill, but hey, debugging is pain.
Try `--proxy ""` to bypass any system proxy weirdness. Also, `strace -e trace=network curl -vL http://example.com` can show low-level network calls if you're *really* desperate.
Might be overkill, but hey, debugging is pain.
