Here are some frequently asked questions about the docs/redirects/faq
section.
Common Questions
What is the purpose of redirects? Redirects are used to send users to a different URL than the one they originally requested. This is useful when you want to consolidate content, change URLs, or handle errors.
How do I create a redirect? You can create a redirect by editing the
.htaccess
file in your website's root directory. Add a line likeRedirect 301 /old-url /new-url
to redirect traffic from the old URL to the new one.Can I redirect a specific language version of a page? Yes, you can redirect a specific language version of a page by including the language code in the URL. For example,
Redirect 301 /en/page /fr/page
.
Useful Resources
For more information, you can visit our Documentation section.