Add a redirect
Stores on a paid plan can link or redirect a page in their shop to another URL (like a blog, for example), all without having to modify built-in theme code. Here's how!
Redirect a link in your shop
- Head to the Account page, then click Design, then click into the Pages section.
- Click the + button to add a new page. Give the page a name.
- Uncheck Use my store's layout, and replace the current code with the following - be sure to change the two example URLs to where you'd like to redirect to:
<html> <head> {{ head_content }} <link rel="canonical" href="http://example.com/your-page/" /> <meta http-equiv=refresh content="0; url=http://example.com/your-page/" /> <meta name="robots" content="noindex,follow" /> <meta http-equiv="cache-control" content="no-cache" /> </head> <body> </body> </html>
Finally, click Done and Publish. That's it! Check out the new link in your shop.
How helpful was this article: