Send all traffic for a domain (or subdomain) to a different URL. Useful for:Documentation Index
Fetch the complete documentation index at: https://paper.brimble.io/llms.txt
Use this file to discover all available pages before exploring further.
- Forwarding
www.example.comtoexample.com(or vice versa). - Redirecting an old domain to a rebranded one.
- Pointing a vanity domain at a marketing landing page hosted elsewhere.
Prerequisites
- A domain in your Brimble account, attached to your workspace (purchased through Brimble or added as a custom domain).
Set up a redirect
- In the dashboard, open the domain.
- Click Edit domain (or ⋯ → Edit).
- In the Redirect section:
- Redirect URL, where to send traffic. Must include the protocol (
https://orhttp://). - Status code, pick from
301,302,307, or308. The default is307.
- Redirect URL, where to send traffic. Must include the protocol (
- Save.

Status codes
| Code | Use when |
|---|---|
| 301 Moved Permanently | The redirect is permanent and cacheable. Search engines transfer ranking signals to the destination. |
| 302 Found | A temporary redirect. Browsers may cache; some change the request method on POST. |
| 307 Temporary Redirect | Default. A temporary redirect that preserves the HTTP method. Safe for POST, PUT, DELETE. |
| 308 Permanent Redirect | Permanent and preserves the HTTP method. Use for permanent redirects of API endpoints. |
Clear a redirect
- Open the domain.
- Click Edit domain.
- Click Clear next to the redirect URL.
- Save.
What redirects don’t do
- They don’t preserve paths automatically. If the redirect URL is
https://example.com/, thenyour-domain.com/aboutredirects tohttps://example.com/, nothttps://example.com/about. Path-preserving redirects must be done in your destination app. - They don’t apply to subdomains separately. Setting a redirect on
example.comdoesn’t redirectapp.example.com. Each hostname has its own redirect setting. - They don’t work without DNS. Your domain still needs to resolve to Brimble’s edge for the redirect to fire. If DNS points elsewhere, the redirect never executes.
Troubleshooting
Redirect doesn’t fire. Confirm DNS resolves to Brimble:157.90.225.125, an ALIAS/flattened CNAME, or a CNAME to gateway.brimble.app. If DNS points elsewhere, traffic never reaches Brimble’s edge and the redirect can’t run.
Browser shows the destination but the URL bar shows my domain. That’s a frame, not a redirect. Brimble doesn’t do frame-based redirects, only HTTP-status redirects with a Location header. If you see the URL stay the same, something else is in front (a browser extension, a proxy, a cached service worker).
Status code is right but the destination is wrong. Open the domain in the dashboard and re-check the redirect URL. Trailing slashes matter, https://example.com and https://example.com/ are different targets to most servers.
TLS warning at destination. The redirect target needs its own valid certificate. Brimble’s certificate is for your domain; the destination handles its own.
Next steps
- Custom domains, attach a domain to a project (the alternative to redirecting).
- DNS troubleshooting, when DNS itself is the problem.