This lines makes redirection to www
# Redirect if NOT www.example.com (exactly) to www.example.com RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www\.example\.com RewriteRule (.*) http://www.example.com/$1 [R=301,L]
or
# Redirect if example.com (case-insensitive) to www.example.com RewriteCond %{HTTP_HOST} ^example\.com [NC] RewriteRule (.*) http://www.example.com/$1 [R=301,L]
Use non-www redirect