Hi,
is this a duplicate content problem? What I have to write in htaccess to prevent google from indexing
http://domain.com and
http://domain.com
I want only
http://domain.com
At the moment, the htaccess looks as follows:
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]