Here's what I'm trying to accomplish:
- the main site starts on the root
/
and has several subpaths (e.g. /contacts, /services, /about, ...)
- one of the path should be served by another application (on opalstack), e.g.
/blog
If I configure the main app on /
and another app on /blog
, all the subpaths served by the main application cannot be reached and error out with HTTP 500.
Am I missing something? can I add back every other generic route with a wildcard route?
Both apps are from the same users (Apache + PHP) so I guess I can simply solve this with a symbolic link. Unless I did something wrong and the setup I expected it is indeed not feasible, I think the docs should be updated to clarify that mount points for apps prevent other routes from being handled by the default (root) app.