Canonical Redirects at Application Level using Redirects.json

Hi All,
I was wondering if it was possible to achieve canonical redirects using the built-in redirects.json file? I dont want to do this using nginx etc would like to do from ghost. something like:

[
{
“from”: “mysite.com/(.*)” ,
“to”: “blog.mysite.com/$1”,
“permanent”: true
}
]

Many Thanks

You should be able to do this I think, check here:
https://docs.ghost.org/concepts/redirects/
and here:

However, that kind of core domain redirect is probably better suited for nginx redirect rather than Ghost redirect.