File: D:/bin/iirf/tests/iterationlimit/IIRF.ini
# IsapiRewrite4.ini
#
# ini file for the ISAPI rewriter.
#
# Tests for IterationLimit
#
# Thu, 27 Apr 2006 06:00
#
# This is an example of a "cycle" in the rewrite logic. In
# general, a cycle happens when the output of one rule will
# satisfy the pattern of another rule. It is not always
# apparent when this will occur. This particular example is not
# an endless cycle; instead as you can see, it stops at a
# maximum of about 7 loops.
IterationLimit 5
RewriteRule ^/([^0-9]*)$ /1/$1
RewriteRule ^/1/([^0-9]*)$ /2/$1
RewriteRule ^/2/([^0-9]*)$ /3/$1
RewriteRule ^/3/([^0-9]*)$ /4/$1
RewriteRule ^/4/([^0-9]*)$ /5/$1
RewriteRule ^/5/([^0-9]*)$ /6/$1
RewriteRule ^/6/([^0-9]*)$ /7/$1