Hey! curl follow redirect might fail if the redirect URL has spaces or weird chars. Try wrapping the URL in quotes.
Example:
```bash
curl -L "http://example.com/weird path"
```
Also, `--max-redirs 10` should work—unless the site’s redirecting infinitely. Check with `-v`.
Example:
```bash
curl -L "http://example.com/weird path"
```
Also, `--max-redirs 10` should work—unless the site’s redirecting infinitely. Check with `-v`.
