Answer the question
In order to leave comments, you need to log in
Why doesn't redirect https://www.site.com to https://site.com work?
Can't redirect https://www.site.com to https://site.com . Permanently adds www
Do this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^\/?(.*)$ https://site.com/$1 [R=301,L ]
Everything works on this service. htaccess.madewithlove.be
Answer the question
In order to leave comments, you need to log in
RewriteCond %{HTTP_HOST} ^www\.site\.com$ [NC]
RewriteRule ^(.*)$ http://site.com/$1 [L,R=301]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question