Forum Discussion
Alex_Pintel
Nov 22, 2022Nimbostratus
iRule exclude URI
I am fairly new to iRules so any help greately appreciated. What is correct syntax to exclude URI "/abc/Web123/cde/forum123/ from receiving HTTP code 200 and the message "123456789"? Is the exclamat...
- Nov 23, 2022
To negate starts_with I would use the not operator:
https://clouddocs.f5.com/api/irules/not.html
when HTTP_REQUEST { if { not ([HTTP::uri] starts_with "/abc") } { # do something ... } else { # do something else... } }
For excluding the exact path, you can go with the "ne" operator
Amine_Kadimi
Nov 23, 2022MVP
To negate starts_with I would use the not operator:
https://clouddocs.f5.com/api/irules/not.html
when HTTP_REQUEST {
if { not ([HTTP::uri] starts_with "/abc") } {
# do something ...
} else {
# do something else...
}
}
For excluding the exact path, you can go with the "ne" operator
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects