show/hide this revision's text 2 Changed $ to % based on David's comment.

Use RewriteCond

RewriteEngine on
RewriteCond $%{REQUEST_URI} !^/(access|edit)/
RewriteRule ^([^/\.]+)/?$ index.php?section=$1 [L]
...

(This is untested, but it should be close)

show/hide this revision's text 1

Use RewriteCond

RewriteEngine on
RewriteCond ${REQUEST_URI} !^/(access|edit)/
RewriteRule ^([^/\.]+)/?$ index.php?section=$1 [L]
...

(This is untested, but it should be close)