Add/remove www when connecting to the site

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]
guest
1 Comment
Inline Feedbacks
View all comments
이주노
이주노

정말 좋은 정보 감사합니다. 잘 쓰겠습니다