To do this edit your .htaccess file in your website root directory.
Add this code at the Top:
Add this code at the End:
Redirecting non-www to www:
*Replace yourdomain.com with your domain name.
Redirecting www to non-www:
*Replace yourdomain.com with your domain name.
Thats it
Add this code at the Top:
Code:
RewriteEngine On
Options +FollowSymLinks
Add this code at the End:
Redirecting non-www to www:
Code:
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
Redirecting www to non-www:
Code:
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
Thats it