Mobile app version of vmapp.org
Login or Join
Pope3001725

: If you point them all to the same content, and do not do a 301 redirect to a "main" domain, then you will be splitting up PR amongst domains (assuming you have links to all of them) and

@Pope3001725

If you point them all to the same content, and do not do a 301 redirect to a "main" domain, then you will be splitting up PR amongst domains (assuming you have links to all of them) and also have duplicate content. The duplicate content will result in pages being penalized and/or removed from the index.

Choose a "main" domain that you always want to appear in the user's address bar and then use .htaccess to redirect anyone who uses the secondary domains to forward to the main domain.

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?secondarydomain1.com$ [NC]
RewriteRule ^(.*)$ www.maindomain.com/ [R=301,L]

RewriteCond %{HTTP_HOST} ^(www.)?secondarydomain1.com$ [NC]
RewriteRule ^(.*)$ www.maindomain.com/ [R=301,L]

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Pope3001725

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme