Redirect www to non www or vice versa

Redirect www to non www or vice versa

Normally we like to keep our URL short. This has also become a trend to keep your site name shorter as much as possible. So removing the www can considerably makes a positive effect for blogs with longer domain name.

Redirect www to non www

RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} ^www.yourblogname.com [NC]

RewriteRule ^(.*)$ http://yourblogname.com/$1 [L,R=301]

Redirect non www to www

RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} ^yourblogname.com [NC]

RewriteRule ^(.*)$ http://www.yourblogname.com/$1 [L,R=301]