I would like to direct through htaccess
two url
of the same domain, type 301. Example:
Redirect meusite.com.br/customer-service
to meusite.com.br/central-atendimento
I tried the following code in the file .htaccess
of my server, but it did not work:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^http://meusite.com.br/customer-service [NC]
RewriteRule ^(.*)$ http://meusite.com.br/central-atendimento$1 [L,R=301]
</IfModule>