Redirect & Routing Rules
Manage URL redirects, routing patterns, and preservation of link equity across your sitemap structure.
Active Rules (4)
| Source Pattern | Target | Method | Priority | Status |
|---|---|---|---|---|
| /old-blog/* | /blog/$1 | 301 | High | Active |
| /products/legacy/ | /shop/ | 302 | Medium | Active |
| /docs/v1/{slug} | /docs/v2/$1 | 301 | Low | Draft |
| /*.html | /$1 | 301 | High | Active |
Route Configuration Preview
<Location path="/*">
<Redirect from="/old-blog/{slug}"
to="/blog/{slug}"
status="301" />
<Redirect from="/products/legacy/"
to="/shop/"
status="302" />
</Location>
<Sitemap autoPrune="true" />
Generated config is deployed to edge nodes in < 2.4s. Changes propagate via WebSocket sync.
Quick Add Rule
Supports regex wildcards (`*`) and named parameters (`{name}`). Automatically updates `sitemap.xml` references.