Is it possible to route to this file structure?
src/pages/
├── index.astro
├── blog/
└── ├── [sub_blog]/
│ └── [...page].astro
│ └── [slug].astro
│ └── [...page].astro
│ └── [slug].astro
where the site is static, except for the two [...page].astro files, which are SSR.
As it is now, both /blog/2 and /blog/other-blog/2 get routed to /blog/[sub_blog]/[...page].astro, which makes sense according to the routing order of things. But, is there a way to make this work? Or do I need to re-think this structure?