52
RewriteRule ^gallery/[0-9][0-9][0-9]/$ index.php?gallery_id=$1

It allows for any number that is three digits in length. I do not know how to allow for less than three digits as well (or more than three for that matter).

Max
  • 915
  • 10
  • 28
Mike Moore
  • 7,228
  • 10
  • 42
  • 63

1 Answers1

108

You want to do something along the lines of

[0-9]{1,3}

There are some excellent examples here. Scroll down to nearly the bottom of the page, there are examples of how the various range selections (not the right term for them) work.

Roman
  • 19,581
  • 6
  • 68
  • 84