Redirects
When a page's address changes — you renamed the slug, restructured the site, or moved from an old website — visitors and search engines still follow the old links. Redirects catch those old addresses and forward them to the right page automatically.
How redirects work in Laravix
A redirect belongs to a specific page or post and says: "whoever asks for this old address, send them to me." You manage redirects directly on the content they lead to.
Creating a redirect
- Open the target page or post for editing.
- Scroll below the form to the Redirects panel.
- Click the create button and fill in:
- Old url — the old path without the domain, e.g.
old-pageorblog/2024/old-article. - Status code — which kind of redirect to use (see below).
- Old url — the old path without the domain, e.g.
- Save.
From now on, yourdomain.com/old-page forwards to this page.
Which status code to pick
| Code | Meaning | When to use |
|---|---|---|
| 301 Moved Permanently | The move is final | Renamed slug, permanent restructuring — the usual choice |
| 302 Found | Temporary | The old address will come back later |
| 307 Temporary Redirect | Temporary (strict) | Rare; like 302 for technical edge cases |
| 308 Permanent Redirect | Permanent (strict) | Rare; like 301 for technical edge cases |
Tip: When in doubt, use 301. It tells search engines to transfer the old address's ranking to the new page.
Typical workflow: renaming a page's address
- Before changing anything, note the current Slug.
- Change the slug to the new one and save.
- In the Redirects panel, add the old slug into the Old url field with status code 301.
- Test: open
yourdomain.com/old-slugin the browser — you should land on the new address.
Frequently asked questions
The redirect doesn't fire. Check the Old url value has no leading https://, no domain and no leading slash — it's just the path, e.g. old-page.
The old address still shows a live page. Redirects are checked before pages, so if a redirect exists for an address, it wins — make sure you saved it on the right content. Conversely, don't create a redirect from an address you still want to serve as a page: the page would become unreachable.
Can I redirect to an external website? No — redirects always point to the content they're attached to.