I want to create a web application structure like the following:
rootUrl/shopRecords/shop1
rootUrl/shopRecords/shop2
rootUrl/shopRecords/shop3...
where there can be any limit of shops, but all of the shop pages will have the same page layout (same HTML/Pug page, just populated with different data from a database). These URLs will be accessed from a list of buttons/links on a home page.
Does Express.js have a wildcard character so that I can specify behavior for all pages with link format rootUrl/shopRecords/*
to be the same?