Forum Moderators: phranque
[L] flag to that rule. (.*) pattern is very inefficient. It might be better coded as ([0-9]+) so that it matches only digits in the request. (.*) pattern after \.html is not needed. Remove it. REQUEST_URI for your exclusions. The | OR operator can be used like this 11(3|4|9) to good effect here.
Stop the rewriting process here and don't apply any more rewrite rules.
Options +FollowSymLinks All -Indexes
RewriteEngine on
#
RewriteCond $1 !=113
RewriteRule page-([0-9]+)\.html$ page.php?ID=$1 [L]