I'm porting a site from EE and I'm running into an issue with an existing URL structure not working using routes.
Existing URL Structure: /articles/[year]/[month]/[day]/
I tried creating a route for the above to the articles/index template but it seems no matter what I try I'm returned the 404 page.
Because of the nature of the site, we need users to be routed to the articles/index template no matter what the three child slugs are and then we can display appropriate messaging if an article doesn't exist for the specific date/URL.
Update
It would appear this must be user error as now the expected outcome is working correctly.
Route: articles/[year]/[month]/[day]
Is properly routing users to the articles/index template whether or not an entry exists.