Follow up, please let me know if my intended configuration will work. We have a client that wants to use one VIP to host 5 domains. I have a text file i'm about to upload, please review and let me know if it will work. I've replaced real names with fictional ones. if( string.contains( http.getheader( "Host" ), "domain1.example.com" ) ){ http.redirect( "https://domain1.example.com" ); } else if( string.contains( http.getheader( "Host" ), "domain2.example.com" ) ){ http.redirect( "https://domain2.example.com" ); } else if( string.contains( http.getheader( "Host" ), "domain3.example.com" ) ){ http.redirect( "https://domain3.example.com" ); } else if( string.contains( http.getheader( "Host" ), "domain4.example.com" ) ){ http.redirect( "https://domain4.example.com" ); } else if( string.contains( http.getheader( "Host" ), "domain5.example.com" ) ){ http.redirect( "https://domain5.example.com" ); }
... View more