Forum Discussion

Muhammad_Irfan1's avatar
Oct 21, 2014
Solved

Proxypass in F5

Hey all the experts of F5, i am network guy please help me out and make an iRule for me and please don't direct me to some Apache proxy pass iRule link as its hard for me to change.   Actually i w...
  • R_Eastman_13667's avatar
    Oct 21, 2014
    when HTTP_REQUEST {
        if {[HTTP::uri] starts_with "/test/"} {
            pool client_servers
        }
        else {
            pool default_pool
        }
    }
    

    EDIT: I fixed the syntax error and added another : to HTTP::uri.