301 curl does not show without -v 301 curl does not show without -v curl curl

301 curl does not show without -v


curl doesn't show any response headers when used without any option, that's just how it works. Use -v or even -i to get to see the headers only.

A redirect page (301, 302 or whatever) MAY contain a body but it also MAY NOT. That is up to the site.

Since you get HTTP redirects, you may want to use -L too to make curl follow them.