htaccess redirect www to non-www

I would like to redirect www.mydomain.com to domain.com. Can you suggest me the redirection code for htaccess file?

Add Comment
  • 2 Answer(s)

    It should be

    RewriteEngine On
    
    RewriteBase /
    
    RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
    
    RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
    
    Answered on May 31, 2023.
    Add Comment

    It should work:

    RewriteCond %{HTTPS} on
    
    RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
    
    RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
    
    Answered on May 31, 2023.
    Add Comment

    Your Answer

    By posting your answer, you agree to the privacy policy and terms of service.