Hi folks,
Currently I’m trying to configure a custom domain into a multi website which uses multiple Netlify domains from the same team. What I want to achieve:
- domain.example
- ui.domain.example (has rewrite for /vue + /html)
- ui.domain.example/vue
- ui.domain.example/html
The problem is that Netlify is redirecting my ui.domain.example/vue to the netlify.app url, unfortunately I cannot solve the issue to rewrite the path and serve everything by the domain.example url.
My netlify.toml has the following config(ui.domain.example)
[[redirects]]
from = "http://ui.ptchr.work/vue/*"
to = "https://ui-ptchr-work-vue.netlify.app/:splat"
status = 200
Nelify domain: https://ui-ptchr-work.netlify.app/
Thanks in advanced