Forum Discussion

player_72606's avatar
player_72606
Icon for Nimbostratus rankNimbostratus
Jul 13, 2009

URL redirection

Hi all,

 

 

is there a way to forward URL based on source or destination address

 

to a specific VS?

2 Replies

  • You can redirect to a VIP.

    Here is an example:

     
       when HTTP_REQUEST { 
        if { [IP::addr [IP::client_addr] equals 10.10.10.10] } { 
         HTTP::redirect "http://vip/" 
          } 
        }