I have 3 websites hosted at netlify:
- https://vee-validate-v2.netlify.app
- https://vee-validate-v3.netlify.app
- https://vee-validate-v4.netlify.app
But I’m using https://vee-validate.logaretm.com
website to redirect to them using a .TOML
redirects file:
[[redirects]]
from = "/v2/*"
to = "https://vee-validate-v2.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/v3/*"
to = "https://vee-validate-v3.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/v4/*"
to = "https://vee-validate-v4.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/"
to = "/v4/"
status = 302
force = true
This front-facing website has no other files but the .TOML
file. It is only used to redirect users to either of these websites depending on which version they want to see.
That means each of those websites should be accessible with:
https://vee-validate.logaretm.com/v4/
https://vee-validate.logaretm.com/v3/
https://vee-validate.logaretm.com/v2/
This has worked great for the past year. I had not deployed anything in December but for some reason, all of the websites are reporting 404 errors randomly since yesterday. I re-deployed the websites and they work for about 5 minutes before they go down again with 404s.
Is this a global issue or did something change?