Redirecting to different domain, I want to stay on the same domain with only content changed

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

In your most recent deploy, only 1 redirect rule was processed:

[[redirects]]
  from = "/*"
  to = "/index.html"
  status = 200

Yea, I reverted back the change. Do you need me to deploy those redirects that didn’t work?

Yeah, we’d need them live to test.