Forum Discussion

2 Replies

  • Here is one based on your request.

     
     when HTTP_REQUEST { 
        if { ([HTTP::host] eq "a.b.net") and ([HTTP::uri] eq "/") { 
           HTTP::redirect "http://a.b.com/test" 
          } 
     } 
     

    Click here to learn more about HTTP::redirect

    Hope this helps

    CB