I have a local url:
link and link
I would like htaccess to remove / view /, eg:
link or link
Add the following lines to your .htaccess:
RewriteEngine on RewriteCond %{REQUEST_URI} !projeto/view/ RewriteRule (.*) /../$1 [L]