This is my netlify site name: mini-ghost-dev.netlify.app
I have added the following configuration to my Github Repo in netlify.toml
:
[[redirects]]
from = "/blog"
to = "/posts"
status = 301
force = true
[[redirects]]
from = "/blog/tags/*"
to = "/tags/:splat"
status = 301
force = true
[[redirects]]
from = "/blog/*"
to = "/posts/:splat"
status = 301
force = true
This used to work in the past, but it stopped working one day, and I can’t figure out the reason. Can someone provide me with some assistance?