# http: redirect loop detected

- **ID:** `go/http-redirect-loop`
- **Domain:** go
- **Category:** network_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The HTTP client followed too many redirects (default 10) without termination, indicating a loop.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 1.22 | active | — | — |

## Workarounds

1. **** (90% success)
   ```
   Set custom CheckRedirect function to limit and detect loops
   ```
2. **** (85% success)
   ```
   Disable redirects and handle manually
   ```

## Dead Ends

- **** — May still loop indefinitely; wastes resources (50% fail)
- **** — No control over server (40% fail)
