Hi Stanley, I don't understand what do you mean by "The rule was properly defined, just not case sensitive". I have taken care of the exact case. My script is shown as below. But it doesn't work. ================== $path = http.getpath(); if( string.contains( $path, "my.example.com" ) ){ pool.use( "NON DEFAULT POOL" ); } ================== It also fails with the following (Case insensitive) ================== $path = http.getpath(); if( string.containsI( $path, "my.example.com" ) ){ pool.use( "NON DEFAULT POOL" ); } ================== I think the condition validation above is not working. If I remove the condition as below then it works with non default pool. ================= pool.use( "NON DEFAULT POOL" ); ================== Please let me know. Thanks & Regards - Tarini
... View more