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]
Comment (1)
정말 좋은 정보 감사합니다. 잘 쓰겠습니다