I have this code:
RewriteCond %{HTTP_USER_AGENT} (navigator) [NC] RewriteRule ^newfolder/(.*)$ /index.html [L,NC]
I em intresting in first line
You can use negation in RewriteCond:
RewriteCond
RewriteCond %{HTTP_USER_AGENT} !(opera|navigator|safari) RewriteRule ^newfolder/(.*)$ /index.html [L,NC]
PS; Take note of RewriteCond %{HTTP_USER_AGENT} !navigator which means all user agents except navigator.
RewriteCond %{HTTP_USER_AGENT} !navigator
navigator