Here is the code for a redirect. Substitute your own domain.
non-www to www:
Code:
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*) http://www.example.com/$1 [R,L]
Recommended
www to non-www:
Code:
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Just upload either one of these to the bottom of your .htaccess file.
Save either of these as a .htaccess file. It is important to redirect one of these to the other otherwise search engines will treat your one big site as two small sites.
|