Wildcard expressions
When specifying Input, URL, or Queue/topic exclusions for applications, you can build wildcard expressions using:
.*
to mean 0 or more of any character.+
to mean 1 or more of any character.?
to mean 0 or 1 of any character.
to mean 1 of any character\.
for an escaped literal of.
for usageExample:
somefile\.jsp
Wildcard expression examples
Desired effect | Regular expression | Example |
---|---|---|
Exclude all subpaths |
| Excludes all paths with the initial URL of |
Exclude one character from subpath |
| Excludes all subpaths that are 5 characters and end in |
Exclude one subpath explicitly |
| Excludes only |
Exclude path ending |
| Excludes all paths ending in |
Exclude paths containing |
| Excludes all paths containing |
Exclude path containing |
| Excludes all paths either starting with |
Exclude paths where a period (dot) is used as a literal character and not a wildcard. |
| Excludes only You can use up to three instances of this expression. |