Test if a URI matches the given wildcard template. Template may end with '?' to make the previous character optional (typically a slash), '*' for a wildcard match, and '?*' to make the previous character optional, and if present, allow anything to follow. Example: - * matches everything - /api/? matches /api and /api/ - /api/\* (sans the backslash) matches /api/ and /api/status, but not /api or /ap - /api/?* or /api/\*? (sans the backslash) matches /api/, /api/status, and also /api, but not /apix or /ap The special characters '?' and '*' anywhere else in the template will be taken literally.