Forum Discussion

5 Replies

  • Can you explain further what you mean by the address is used for http health monitoring?

     

    Is that the address of one of your pool members or is it a VIP?

     

    • zhaleh's avatar
      zhaleh
      Icon for Nimbostratus rankNimbostratus

      This address for http health monitor(GET /shop/learn/ddd HTTP/1.1\r\nHost: \r\nConnection: close\r\n\r\n) and this ip address for pool member.

       

  • Can you explain further what you mean by the address is used for http health monitoring?

     

    Is that the address of one of your pool members or is it a VIP?

     

    • zhaleh's avatar
      zhaleh
      Icon for Nimbostratus rankNimbostratus

      This address for http health monitor(GET /shop/learn/ddd HTTP/1.1\r\nHost: \r\nConnection: close\r\n\r\n) and this ip address for pool member.

       

  • You can redirect to the default web page with an irule or a policy

    With an irule :

    when HTTP_REQUEST {
        if {[HTTP::path] equals "/shop/learn/ddd"} {    
            HTTP::redirect /    
    }
    }