Hi I would like to 301 redirect all non-www URLs in my music production Q&A section. I noticed Google are indexing the non-www version which is not right.
This is the current question2answer htaccess:
DirectoryIndex index.php
RewriteEngine On
#RewriteBase /your-sub-directory
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
Any ideas how to revise the above htaccess so that it can redirect all non-www URLs to www for question2answer section only? Thanks.