I’m creating an app that uses app extension blocks. The app has several blocks that a store can apply to page, where each block loads specific data from our servers (like help pages, etc). Rather than forcing each store to create a separate page for each block that they want to use, is it possible to have them create one page, assign one block to that page, but have multiple urls point to that single page.
For example, have these urls all point to the single url → /pages/help-app/index, /pages/help-app/how-would-i-xxx, /pages/help-app/how-to-create-xxx, etc. but all of those urls point to the single page configured with my app’s extenstion → /pages/help-app. i could then read the url to determine which subpage they are trying to load and pull in that information from our server.