Forum Discussion
Rob_Woods
Nimbostratus
5 years agoRewrite URL with parameters
I have a url like http://server1/cyberdocs/getdoc.asp?altentry=Y&doc=208923 that I would like to ...
jaikumar_f5
Noctilucent
5 years agoHi ,
You can do with query cmd and capture value,
ltm rule pcdocs-test {
when HTTP_REQUEST {
set value [URI::query [HTTP::uri] doc]
HTTP::redirect "pcdocs://server2/$value/R"
}
}Let us know if you need more help.