Hello,
How can I perform a case-insensitive match for the requested URL path? For example:
when HTTP_REQUEST {
if { [HTTP::path] equals "/NotificationServer" } {
pool example_service-group
}
}
And a case-sensitive example is:
http://host/NotificationSERVER
Regards
Comments
Could you use a "tolower" function on the HTTP::path and then do equals "/notificationserver"?