Add/remove www when connecting to the site
If you connect to the site, you can add or remove the www automatically. Enter the .htaccess file. # Add www RewriteCond %{http_host} ^(?! www \.) (.+) [NC] RewriteRule ^(.*) http://www.%1/$1 [R=301,NE,L]#WWW removal RewriteCond %{http_host} ^www \. (.+) [NC] RewriteRule ^(.*) http://%1/$1 [R=301,NE,L]