오길호2023-09-11T11:28:45+09:00This is a method to automatically add or remove www when accessing a site. You can input this in the .htaccess file. # Adding www RewriteCond %{HTTP_HOST} ^(?!www\.)(.+) [NC] RewriteRule ^(.*) http://www.%1/$1 [R=301,NE,L] # Removing www RewriteCond %{HTTP_HOST} ^www\.(.+) [NC] RewriteRule ^(.*) http://%1/$1 [R=301,NE,L]