A client at first wanted his web page to show / shop at the end of his url, now he wants it not to show it, he has this in his account that I put at the beginning. Your hosting is shared, you have the web in a folder / shop and the url of the domain www.dominio.com parked to that folder
RewriteCond %{HTTP_HOST} ^dominio\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.dominio\.com$
RewriteRule ^/?$ "http\:\/\/dominio\.com\/shop\/" [R=301,L]
How would you remove the redirection that shows / shop / in the url and that does not affect the indexed urls?
RewriteRule ^/?$ "http\:\/\/dominio\.com\/shop\/" [R=301,L]
Should it be like this?
RewriteRule ^/?$ "http\:\/\/dominio\.com\/" [R=301,L]
or delete the RewriteRule and add
Redirect 301 /shop http://www.dominio.com/