Heres an easy one for someone out there (but I dont know the answer) Q. How do I make my site url change from http://sitename.com to http://www.sitename.com ? A. = ?
Actually I still don't understand, your site is http://www.site.com. Whatever you type in to go to your site, that is what will appear.
those are URL's, both of those URL's are the same thing basically just different context of it. Both will still access your site as appropriate.
it can be done in the .htaacess file... do a google search... if u have a blog then use permalink plugin....
Google will allow you to set your preferred domain under webmaster tools. Don't know if that helps or not.
You can use a mod_rewrite line to accomplish this: RewriteEngine On RewriteCond %{HTTP_HOST} ^yourdomain.com$ RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L] Code (markup):