Does anyone know if it’s possible to rewrite a domain alias to another netlify domain in the same team?
I’ve currently got:
[[redirects]]
from = “https://www.vendors.my-domain.com”
to = “https://my-other-domain.com”
status = 200
force = true
It’s an SPA and also has this rule at the bottom.
[[redirects]]
from = “/*”
to = “/index.html”
status = 200
The page is blank and the network request fetches the resource but doesn’t load it into the page. Instead the original content is loaded into the page in the SPA.
Any advice or help ??