Hello,
Please change your const routes variable in app-routing.module.ts like below. It worked on you shared domain.
const routes: Routes = [
{
path: '',
redirectTo: 'folder/Inbox',
pathMatch: 'full'
},
{
path: 'folder/:id',
loadChildren: () => import('./folder/folder.module').then( m => m.FolderPageModule)
},
{path: 'pageA', component: PageAComponent},
{path: 'pageB', component: PageBComponent},
{path: 'pageC', component: PageCComponent},
{path: '', component: LandingPageComponent, pathMatch: 'full'}
];