Forum Moderators: phranque
With mod_access, it is much easier to implement access controls on address ranges which start at and are sized to powers of two, rather than powers of ten. So controlling .0 through .31 (32 addresses, or two raised to the fifth power) is much simpler and more efficient than controlling .1 through .30, for example.
With mod_rewrite, you'll need to define one or more regular-expressions patterns that encompasses the characters that make up the various IP address ranges -- Don't lose sight of the fact that mod_rewrite does a character compare, not a numeric compare. However, this method can support any range or size, regardless of the number base of the range start address and size.
Jim