skip to Main Content

Multiple languages + Htaccess – SEO

I need for a domain to manage languages (en/it/pt/es) plus remove www. and force https RewriteEngine On # -> www.example.com to example.com RewriteCond %{HTTP_HOST} www.example.com RewriteRule (.*) http://example.com/$1 [L,R=301] # -> http -> https RewriteCond %{SERVER_PORT} 80 RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}…

VIEW QUESTION
Back To Top
Search