You could use a route rather than virtual pages
'routes' => [
[
'pattern' => 'blog/archive/(:any)/(:any)',
'action' => function($year, $month) {
// filter collection of articles here
}
]
]
You could use a route rather than virtual pages
'routes' => [
[
'pattern' => 'blog/archive/(:any)/(:any)',
'action' => function($year, $month) {
// filter collection of articles here
}
]
]