Forum Discussion

2 Replies

  • 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