Rules processing and flow controlA virtual server may be configured to run several request or response rules. In this case, the rules are executed in turn, unless a terminal action such as Quite often, it's necessary to stop processing a rule and proceed to the next rule. For example, you might have a lengthy rule which only applies to requests for
$url = http.getPath();
if( string.startsWith( $url, "/secure" ) {
...
...
...
}
It's more elegant to use the ' $url = http.getPath(); if( !string.startsWith( $url, "/secure" ) ) break; ... ... ...
You can also use the '
Owen Garrett
[Zeus Dev Team] 01 July 2005
|
Recent Articles
Other Resources
|


