I have a main website https://ansperformance.eu/ (repo) being served by Netlify app aiu-portal.netlify.app on a custom domain.
Similarly other sub-parts of the main website have their own repo/app:
- standard inputs book repo / Netlify app
- ACE high level summary report repo / Netlify app
- …
The two sub-parts above for example are configured in the main website repo via proxying like (in netlify.toml
)
[[redirects]]
from = "/economics/ace/ace-hlsr/*"
to = "https://ace-hlsr.netlify.app/:splat"
status = 200
force = true
[[redirects]]
from = "/economics/cba/standard-inputs/*"
to = "https://standard-inputs.netlify.app/:splat"
status = 200
force = true
This allows to navigate to any page in the Standard Inputs book with a URL for the main website, like https://ansperformance.eu/economics/cba/standard-inputs/chapters/geographical_areas
The problem now is that the navigation via the sidebar and page navigation (see arrows in attached screenshot) used to work in the near past (say at least till March 2023) but do not anymore.
For example side navigation link for “Medium term capacity planning” points to https://ansperformance.eu/chapters/medium-term_capacity_planning instead of https://ansperformance.eu/economics/cba/standard-inputs/chapters/medium-term_capacity_planning
The processing of the redirect from the deploy logs do not show any issues: I am wondering whether something on the Netlify side has changed recently on proxying/redirect front.
Thanks in advance for any feedbacks/hints at a solution