Forum Moderators: martinibuster
I would recomment buying the .com domain, since it is the most used top level domain, and some of your users might accidentally type .com instead of .org.
You should then redirect the .com domain to .org. If you have two seperate sites with the same content, you might get the duplicate content penalty from Google.
e.g. instead of /about.html make it into newdomain.com/about.html
You will incur no penalties, no delay, no redirection problems plus Adsense and Ad Links will run as it is now.
I have done this for years for over 100 sites and with absolutely no problems in case you were wondering.
RewriteEngine on
RewriteCond %{HTTP_HOST}!^www\.maindomain\.org [NC]
RewriteCond %{HTTP_HOST}!^$
RewriteRule ^(.*)$ [maindomain.org...] [R=301,L,QSA]
This will prevent duplicate content issues with Google.
In Apache, just say that the other domain name is an alias (using the ServerAlias directive).
<VirtualHost 11.22.33.44>
[..]
DocumentRoot /data/web/www.mydomain.org
ServerName www.mydomain.org
ServerAlias www.mydomain.com
[..]
</VirtualHost>
(Similar configurations are possible in other webservers.)
Both domains now represent the same virtual and use the same directory on the filesystem, without having to use the nasty redirect tricks that I wouldn't advise in this scenario.
Oh, and don't forget to buy that .com domain ;-)
In Cpanel, which I have access to because I have a hosting reseller account, the parked domain option button says:
"Parked Domain Maintenance
Domain pointers allow you to "point" or "park" additional domain names to your existing hosting account. This will allow users to also reach your website when entering the "parked" or "pointed" domain into their browsers."
Then there is a box where I can type in the name of the my parked domain (mydomain.net), and submit. I assume this will then point it to mydomain.com (which I entered cpanel from). Am I correct?