For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

1 Reply

  • You don't need to use semicolons and you can redirect with the HTTP::redirect command. This could also be done as part of an LTM traffic policy

    when HTTP_REQUEST { 
        if {[string tolower [HTTP::host]] eq "www.oasiscard.co.uk"} { 
            HTTP::redirect "https://myoasiscard.co.uk/" 
        }
    }