3Likes
[How to] Setup www.yourdomain.com or yourdomain.com (www vs. non-www) - With .htaccess 301 redirects
This is a discussion on [How to] Setup www.yourdomain.com or yourdomain.com (www vs. non-www) - With .htaccess 301 redirects within the General Discussion forums, part of the vBSEO SEO Plugin category; change this:
Code:
RewriteCond %{HTTP_HOST} ^makeuptalk\.com
RewriteRule ^(.*)$ http://www.makeuptalk.com/$1 [L,R=301]
to
Code:
RewriteCond %{HTTP_HOST} !^www\.makeuptalk\.com
RewriteRule ^(.*)$ http://www.makeuptalk.com/$1 [L,R=301]
effectively ...