18-May-2020 18:17
Need help on URI replacement. the below irule is only working for the initial request but not the other request after getting in to the application somehow.
when HTTP_REQUEST {
set http_uri [HTTP::uri]
set http_host [string tolower [HTTP::header "Host"]]
if { [HTTP::uri] matches_glob "/profile" } {
HTTP::uri [string map {/profile /account} [HTTP::path]]
SSL::disable serverside
pool ABCD
}
else {
Pool XYZ
}
}
19-May-2020
08:49
- last edited on
24-Mar-2022
01:32
by
li-migration
This DevCentral Article may help. it goes into detail to explain what you may be experiencing.
Single URL Explicit Redirect
https://devcentral.f5.com/s/articles/irule-recipe-1-single-url-explicit-redirect-21910