Property Manager Name: Path
Matches the URL’s non-hostname path component.
Options
- matchOperator (enum string): Matches the contents of values when set to MATCHES_ONE_OF, otherwise, DOES_NOT_MATCH_ONE_OF reverses the match.
- values (array of string values): Matches the URL path, excluding leading hostname and trailing query parameters. The path is relative to the server root, for example, /blog. The value accepts * or ? wildcard characters, for example /blog/*/2014.
- matchCaseSensitive (boolean): When enabled, the match is case-sensitive.
- normalize (boolean): Transforms URLs before comparing them with the provided value. URLs are decoded, and any directory syntax such as ../.. or // is stripped as a security measure. This protects URL paths from being accessed by unauthorized users.