This is even simpler: most browsers I have seen will simply stop after performing the maximum number of redirects. For example, if you have a rewrite rule that always appends an βxβ to the end of the URL:
RewriteRule ^(.*) /$1x [R]
Chrome will refuse until it reaches /xxxxxxxxxxxxxxxxxxxxx - 21 redirects total.
source share