Forum Discussion
nitass
Jan 31, 2012Employee
do you mean if you have 4 more paths like /bac to filter?
if so, you can add them in switch case.
e.g.
when HTTP_REQUEST {
switch -glob [string tolower [HTTP::path]] {
"/bac*" {
do something
}
"/111111*" {
do something
}
"/222222*" {
do something
}
"/333333*" {
do something
}
"/444444*" {
do something
}
}
}