Domains & launch

Redirect Rules: sending old addresses to new pages

Published Updated

A redirect rule sends anyone who visits an old address straight to the right page instead. It is what keeps links working after you rename, move, or retire a page, and it tells search engines where the page has gone. This guide shows you where Redirect Rules live in the portal, how to create your first rule, and how to read the warnings the platform gives you.

Where to find Redirect Rules

Open your brand in the portal and pick the Redirect Rules tab in the row of tabs across the top of the brand page. The screen has three parts: the rule type chooser, the form for the rule you are creating or editing, and the list of rules you already have.

The Redirect Rules tab on a brand. Marker 1 points to the Redirect Rules tab in the tab strip; marker 2 to the three rule type cards; marker 3 to the source and target fields; marker 4 to the Create Rule button; marker 5 to the rules list.
The Redirect Rules tab: (1) the tab itself, (2) rule type, (3) the rule form, (4) Create Rule, (5) your rules list.
Not seeing the tab? Redirect Rules is a new addition to the portal and access is still being switched on. If it is not showing on your brand yet, contact support and we will sort it.

One rule to remember: live pages come first

Before creating anything, know this: a redirect only runs where there is no live page. When a visitor asks for an address, the platform serves the published page at that address if one exists. Only when there is no page does it check your redirect rules. This is a safety feature: a redirect can never knock out a page that is still live.

To redirect away from an existing page, delete (or move) the page first, then the rule takes over the old address. If you create a rule whose source is still a live page, the portal flags it with a warning and the rule simply waits: it starts working the moment the page at that address goes away.

The three rule types

The three rule type cards: marker 1 on Direct (Page to Page), marker 2 on Wildcard, marker 3 on Regex (Advanced).
Pick the type first; the form's hints and examples change to match.
TypeWhat it doesExample
Direct (Page to Page) (1)Sends one exact address to one destination. The right choice for most jobs./old-offers to /pricing
Wildcard (2)Covers a whole folder of addresses in one rule. The * matches anything, and $1 in the target re-uses what it matched./blog-2019/* to /blog/$1
Regex (Advanced) (3)Full regular expressions for selective matching and rewrites. For power users.^/products/(\d+)$ to /shop/$1
Start with Direct. Reach for Wildcard when you are retiring a whole section, and Regex only when the other two cannot express what you need. The deep dive covers Wildcard and Regex matching in detail.

Creating your first rule

The rule form filled in. Marker 1 on the source pattern field, 2 on the target field, 3 on the target suggestions list, 4 on the status code, 5 on priority, 6 on Create Rule.
Filling in a Direct rule. Typing in the Target field (2) suggests your existing pages (3).
  1. Source pattern (1): the old address, starting with a slash, for example /summer-offer. This is what the visitor typed or clicked.
  2. Target (2): where to send them. Start typing and the portal suggests your existing pages (3), so you can pick a real destination rather than guess. You can also paste a full web address (starting https://) to send visitors to another site.
  3. Status code (4): 301 (Permanent) or 302 (Temporary). See below; 301 is the default and usually right.
  4. Priority (5): only matters when rules overlap. Higher numbers are checked first. Leave it at 0 unless you need it.
  5. Rule active and Preserve query string: active is on by default; switch it off to park a rule without deleting it. Preserve query string carries anything after a ? through to the target (useful for tracking links), and is on by default.
  6. Press Create Rule (6). The rule appears in the list below and starts working on your live site within about a minute.

Reading your rules list

The rules table with four rules. Marker 1 on a warning triangle next to a source, 2 on the Type column, 3 on Priority, 4 on Active, 5 on the edit and delete buttons.
The rules list: (1) a warning flag on a rule, (2) rule type, (3) priority, (4) active or paused, (5) edit and delete.

Rules are listed highest priority first. The green tick means the rule is active; the amber pause icon means it is switched off. Use the pencil to load a rule back into the form for editing, and the bin to delete it. Deleting asks you to confirm first, because a deleted rule cannot be undone:

The Delete Redirect Rule confirmation dialog, asking Are you sure you want to delete this redirect rule? This action cannot be undone, with Cancel and Delete buttons.
Deleting a rule asks for confirmation. Cancel backs out safely.
Pausing beats deleting. If you only want a rule out of action for a while, edit it and switch off Rule active instead of deleting it; you keep the rule ready to switch back on.

Warnings on a rule

The platform checks every rule against your real pages and your other rules, and shows a warning triangle next to any rule with a potential issue (1 in the screenshot above). Click the triangle to read the details:

The Potential Issues panel listing two warnings: a matching live page takes priority over the rule, and a wildcard rule that may shadow other rules.
The Potential Issues panel explains exactly what might stop a rule behaving as you expect.

The warnings you are most likely to see:

A warning never blocks you from saving: it is advice, not a lock. But it is worth resolving every warning before you move on.

Permanent (301) or temporary (302)

Good to know

Want the full mechanics? Pattern syntax, matching order, caching, and how to test like an engineer: read the Redirect Rules deep dive.