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

2 Replies

  • hoolio's avatar
    hoolio
    Icon for Cirrostratus rankCirrostratus
    If you configure the VS that abc.domain.com resolves to with a client SSL and HTTP profile, you can use an iRule like this to redirect / to home:

    
    when HTTP_REQUEST {
    
       if {[HTTP::path] eq "/"}{
          HTTP::redirect "https:/abc.domain.com/home"
       }
    }
    

    Aaron