Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Rasool1224's avatar
Rasool1224
Icon for Nimbostratus rankNimbostratus
8 years ago

change http header

Dear DevCentral

 

I would like to do as, my application url is http://test.me.com, want to replace with https://me.test.com

 

I tried to use streaming profile but no success can any one advice me ! thank you Regards,

 

1 Reply

  • You should use LTM Policy preferably. Alternatively iRule as follow:

     

    if { [HTTP::host] equals "test.me.com" } { HTTP::respond 301 Location ";[HTTP::uri] }

     

    or,

     

    when HTTP_REQUEST { if { [string tolower [HTTP::host]] eq "test.me.com" } { HTTP::respond 301 Location ";[HTTP::uri] } }