AbuAhmad
Aug 05, 2021Nimbostratus
Dropping connections after a specific part of URI
Hi There,
I need help to write an iRule that will drop the request for any request after this uri:
/xyz/web/apx/ pass this request but anything after that uri need to drop the request ( drop /xyz/web/apx/*)
tried this but it is not working:
when HTTP_REQUEST {
if { [HTTP::uri] contains "/xyz/web/apx/*" } {
drop
}
}
Thank you in advance
Hi AbuAhmad,
I missed something sorry. Could you please try below one:
when HTTP_REQUEST { if { [HTTP::uri] starts_with "/xyz/web/apx/" && not ([HTTP::uri] equals "/xyz/web/apx/") } { drop } }