URL redirects help you forward users from one page to another, especially when changing page URLs. On Nilead, you can manage redirects easily through the admin interface using either simple or regex-based rules. All redirects apply only to public-facing URLs — backend and API routes are not affected.
You must have access to the Nilead admin dashboard
Your website should be live or in staging with frontend access
Regex knowledge (only if using advanced redirect rules)
Support contact if enabling regex redirection
Log in to your Nilead admin dashboard.
Open the Quick Menu (press / or click the search icon).
Type and select Redirect.
You will be taken to the Redirect Management interface.

You can create either a normal redirect or a regex-based redirect.
Use this when you want to redirect a specific path to another:
From: /about-us
To: /about
Note: Omit the domain (e.g., don’t include https://yourdomain.com). This makes redirects domain-agnostic and easier to maintain after migrations.

Use this when you want to redirect a pattern of URLs.
Example: Redirect all /product/xyz URLs to /service/xyz:
From: ^/product/(.*)
To: /service/${1}
This uses PCRE regex syntax. Internally, preg_match and preg_replace are used to evaluate and apply the rules.
💡 Test your regex at Regex101.com.
Each redirect rule has an Enabled toggle. Use it to temporarily disable a redirect without deleting it.
Once your redirect is set, click Save. Changes take effect immediately on the frontend.
Regex redirects are currently disabled by default due to performance concerns. If you need to use them, please contact Nilead Support to enable this feature for your website.
1. Do redirects affect my API or admin panel URLs?
No. Redirects only apply to frontend (public) URLs.
2. Can I include the full domain in the redirect?
No. Always use path-only redirects (e.g., /old-page, not https://example.com/old-page).
3. Can I redirect multiple pages using one rule?
Yes, but only using regex. For example, ^/blog/(.*) → /news/${1}.
4. Will redirects affect my SEO?
Proper redirects help preserve SEO when URLs change, especially if you use 301 redirects (Nilead uses this by default).
5. Can I preview the redirect before enabling it?
You can create and disable the rule first, then test manually before toggling it on.