I have a website that has two sites setup as paths within the same domain, with a third project as the “root” which adds a rewrite to the other two sites.
In the root site’s netlify.toml:
[[redirects]]
from = "/siteone/*"
to = "https://siteone.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/sitetwo/*"
to = "https://sitetwo.netlify.app/:splat"
status = 200
force = true
This has been working very well, but suddenly now it is not.
I first noticed this on our staging site, but now it is happening on production and we have not pushed anything there to trigger this or any rebuild.
The two sites work if you go to as the example above https://sitetwo.netlify.app/
but that is not public facing. As a result, our site is completely down.
We have not pushed any updates.
What is going on???