Forum Discussion
scott_nixon_825
Dec 27, 2004Historic F5 Account
Command for HTTP header insertion to insert an SSL session ID
What is the command for HTTP header insertion to insert an SSL session ID as a header into an HTTP request for BIGIP 9.0
Our 9.0 manaula states, on Chapter 9 pg2:
You can...
karthik_sriniva
Nimbostratus
Apr 08, 2005Thanks Gentlemen for all your help.
- May 09, 2018
This should work:
when HTTP_REQUEST { if { ([HTTP::host] eq "x.123.com") && [HTTP::uri] starts_with "/123.asp" } { set llactid [URI::query [HTTP::uri] "llactid"] if { ($llactid ne 30484) && $llactid > 29999 } { HTTP::redirect "https://y.abc.com/trackalyze.asp?r=&p=https%3A//site.com/&llactid=$llactid&llnocookies=undefined" } } }