Currently I'm trying to redirect from root.com/robots.txt to beta.root.com/robots.txt.
This is not working currently, any idea why?:
{
"version": 2,
"alias": ["root.com"],
"routes": [
{
"src": "/(.*)",
"status": 301,
"headers": { "Location": "https://beta.root.com/$1" },
"dest": "/$1"
}
]
}