0
I would like to direct through the htaccess
two url
of the same domain, type 301. Example:
Redirect meusite.com.br/customer-service
for meusite.com.br/central-atendimento
I tried the following code below in the file .htaccess
from my server, but it didn’t 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>