To do this edit your .htaccess file in your website root directory.

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]
*Replace yourdomain.com with your domain name.

Redirecting www to non-www:
Code: 
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
*Replace yourdomain.com with your domain name.


Thats it
iFlames Reviewed by iFlames on . Redirect non-www to www and vice versa To do this edit your .htaccess file in your website root directory. Add this code at the Top: RewriteEngine On Options +FollowSymLinks Add this code at the End: Redirecting non-www to www: RewriteCond %{HTTP_HOST} ^yourdomain.com RewriteRule ^(.*)$ http://www.yourdomain.com/$1 *Replace yourdomain.com with your domain name. Rating: 5