Redirecting to a specific section of a page

Hey all,

I’m trying to use redirects to create some nicer looking links to specific sections of a page of our support site, but am having some trouble setting up the redirects.

For example, I want to redirect
from: https://support.playhive.com/survival-games-unlocks
to: https://support.playhive.com/level-based-unlocks/#survival-games-%F0%9F%8F%B9

The redirect doesn’t seem to work at all unless I add a trailing slash to the end of the destination link, but upon doing so, it doesn’t link to the specific section of the page.

This is the JSON I am currently using:

{"from":"/level-based-unlocks/#survival-games-%F0%9F%8F%B9","to":"/survival-games-unlocks/","permanent":true}

Any help would be much appreciated!

That redirect won’t work because the #anchor part of URLs are client-side only, browsers never send it to the server so Ghost will never see it to be able to redirect.

Ah, that’s a shame. Thank you for the info!