VS
Jul 10, 2020Nimbostratus
redirect with variable uri
Hi,
Newbie to F5 working on my first irule and already stuck. I have an irule similar to below which works. But now need to modify it with part of the URI "123456" being variable and redirected to the corresponding value. Any suggestions would be greatly appreciated!
when HTTP_REQUEST {
if { ([HTTP::host] contains "website1") and ([string tolower [HTTP::uri]] starts_with "/test1/download/?uri=123456&t=record&lang=ln_english&mbd=false") } {
HTTP::redirect ""http://website2.com/test/Record/123456/File/Document""
}
else { pool POOL1 }
}
Hello VS.
Try this.
when HTTP_REQUEST { set uri_param [URI::query [HTTP::uri] uri] if { ([HTTP::host] contains "website1") and ([string tolower [HTTP::uri]] starts_with "/hptrimwebclient/download/") } { HTTP::redirect "http://website2.com/CS/HPRMServiceApi/Record/$uri_param/File/Document" } else { pool POOL1 } }
Regards,
Dario.