Colleagues.
I have the following code in htaccess that I do the targeting:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?site.com.br$
RewriteCond %{REQUEST_URI} !^/novo/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /novo/$1
RewriteCond %{HTTP_HOST} ^(www.)?site.com.br$
RewriteRule ^(/)?$ novo/index.php [L]
However, there are links containing new / company.php and you would like to click only company.php on the click without having to change the menu links. Can you do this in htaccess?