Topic: Use 301 redirect in VLD
The redirect check tool looks at a number of different URLs for your homepage, and reports back on the response code given by each. To be completely safe, a 200 response should only be returned by one page. Other pages should return a 404 or 301. Anything else could be a potential duplicate content problem.
If you want to redirect the non www to www you can use:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com
RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]
I have been using this in my site for a while is great for SEO purpose.
Ps.Change your site with your domain and you can use this tool to check out the redirect.
http://www.ragepank.com/redirect-check/
Last edited by reklamat (2009-09-24 20:35:20)