In my .htaccess
file I have the following rule:
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).
I am still new to regex.
Thank-you!