Setting up Redirects
Requires Pro Plus or higher
If you've published a site to a .carrd.co URL, a custom domain, or a custom subdomain, you can optionally create redirects that point "slash" URLs (like /about
) to either a specific section of the site, an external URL, or simply back to the site. This is extremely useful if you're moving an existing site to Carrd and want to preserve some of its URLs, or if you simply want to set up shortcuts to external sites (for example, a shortcut that redirects /blog
to a Medium blog). Here's how:
Click Publish
Make sure URL is set to Use my own domain.
Click the Settings tab.
Scroll down to Redirects and enter each redirect in
/request=destination
format (one pair per line), whererequest
is the redirect's "slash" URL anddestination
is where you want it to go. Examples:/about.html=/
- Redirects
/about.html
back to the site. /contact=#contact
- Redirects
/contact
to section#contact
/blog=https://medium.com/untitled
- Redirects
/blog
to an external URL. /products/*=#products
- Wildcard redirects anything prefixed with
/products/
to#products
/blog/*=https://domain.ext/blog/*
- Wildcard redirects anything prefixed with
/blog/
tohttps://domain.ext/blog/*
, with*
substituted for the matching portion of the request. For example,/blog/2024/07/15/hello-world
would redirect tohttps://domain.ext/blog/2024/07/15/hello-world
. /*=/
- Wildcard redirects every slash URL back to the site.
All redirects are handled as 301 redirects.Click Publish Changes
You're done! The redirects should now be in place and ... well, redirecting.