0
When I type in the browser
phimodasecia.com.br
my site/store enters (is redirected) with error as below:
https://www.phimodasecia.com.br/https://phimodasecia.com.br/
My setting for . htaccess is
# ======== COMEÇA AQUI ========
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
# ======== TERMINA AQUI ========
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^phimodasecia.com.br [NC]
RewriteRule ^(.*)$ https://www.phimodasecia.com.br/$1 [r=301,NC]
straight, worked and solved my problem. Thank you!
– Isaias Soares Leite