Best way to redirect a link

Just migrated my site to Ghost(Pro) - and I’m trying to understand the best way to deal with a legacy link.

my previous site had its newsletter at Stuff that MattR's - but now I don’t have that page… is there a simple way for me to ‘redirect’ that link back to my home page, without the user seeing the 404 page?

I’m a bit of a novice here - so I’m looking for a simple solution.

Thanks!

Go to Settings > Labs and under redirects, add the following to the existing file (use the download link.) I suggest you set "permanent": false until you are satisfied with the way it works.

[
  {
    "from": "^/newsletter$",
    "to": "/",
    "permanent": true
  }
]
3 Likes

Thank you - this works perfectly… appreciate the quick support.

#thanks

2 Likes