show/hide this revision's text 2 another solution

Add

RewriteCond ^admin/
RewriteRule (your Rule) [L]

before the other condition. That should do the trick.

Another way would be to include the condition in the rule directly via

RewriteRule ^admin/(rest_of_regex)$ (regex_stuff) [L]
show/hide this revision's text 1

Add

RewriteCond ^admin/
RewriteRule (your Rule) [L]

before the other condition. That should do the trick.