My netlify site is https://test--ultimatesportstoretest.netlify.app/
and I want to route the /designs path to another domain https://ultimatesportstore.com/
this is my toml file:
[[redirects]]
from = "/designs/*"
to = "https://ultimatesportstore.com/:splat"
status = 200
force = true
[[redirects]]
from = "/*"
to = "/index.html"
status = 200