Forum Discussion
SteveEason_3059
Nimbostratus
Feb 22, 2018Adding an exception to an iRule
We have an iRule we are using to remove spaces from URLs, due to some issues we were having. However, I need to adjust the iRule to allow one directory to buy pass the iRule. Here is the iRule:
wh...
Feb 22, 2018
Something like this:
when HTTP_REQUEST {
if { !([string tolower [HTTP::uri]] starts_with "/files") } {
set uri [HTTP::uri]
set new_uri [string map {"%20" ""} $uri]
HTTP::uri $new_uri
}
}
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