AEM Dispatcher Filters, checking for more than one selector
I want to add a filter rule that allows urls of a certain /path that also end with .cfm.gql.json
In this case, the extension is json, and the selectors are cfm and gql. The issue is that I'm not sure how to how to check that both selectors are in the url, I only know how to check if one of them is in it using /selectors '(cfm|gql)'
I also want to avoid using a wildcard like /*.cfm.gql.json because that doesn't seem safe, and I don't think including selectors in the /path is a good choice either. Would appreciate any help!