Forum Discussion
Rakesh_125845
Nimbostratus
Jan 31, 2018Traffic redirection
" Tokenized string" [a-Z]{1,6}[0-9]{1,15}
can anyone help me in writing an F5 irule for the following ?
I want to redirect the following URLs:-
1) https://sfobjtest.govnet.nsw.gov....
Kai_Wilke
MVP
Feb 21, 2018Hi Rakesh,
if the iRule above does not work at all, then I would recommend to include some Debug-Log line to make sure the iRule gets executed...
when HTTP_REQUEST {
log local0.debug "Debug: iRule executed"
if { [string tolower [HTTP::host]] equals "sfobjtest.govnet.nsw.gov.au" } {
log local0.debug "Debug: [string tolower [HTTP::host]] is matching the pattern"
HTTP::respond 301 Location "sfobjtest.govnet.nsw.gov.au:8443//documents"
} else {
log local0.debug "Debug: [string tolower [HTTP::host]] is not matching the pattern"
}
}
Note: Keep in mind, that almost every configuration change requires you to close any existing TCP-session. So better close/open your browser between the individual tests to get sure...
Cheers, Kai
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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