strings
1 TopiciRule to match 2 or more strings in the URI?
I have this requirement to match 2 uris in the same request. i have this iRule: when HTTP_REQUEST { switch -glob [HTTP::host][HTTP::uri] { "/upload" - " images " { pool SERVER1 } } } The iRule above match "upload" or "images" then go to the pool. What if I wanted to check both "upload" and "images" on the same request, and if match you go to pool SERVER1? what will be the iRule format? Any change on the " - " syntax? thanks!691Views0likes4Comments