Hi, Basically I want both of my domains to function under one site. For example... aaa.com/index.php is the same the one in bbb/index.php. Meaning 2 domains will use the content of one account. Is this even possible?
I suppose so, you could have them access the same mySQL database, but then you run the risk of some sort of dupe content penalty - why not just have one forward to another?
just point both domains to the server. Direct one of them for the main domain, and park the other on the same.
Yes, you can do it. People do this when they buy variations on a name and/or different extensions of the same domain name. The domains need to have the same IP address. If you are using Apache, you use virtual name hosting: NameVirtualHost *:80 <VirtualHost *:80> ServerAdmin webmaster@example1.com DocumentRoot /home/web/ ServerName example1.com ErrorLog logs/example1.com-error_log </VirtualHost> <VirtualHost *:80> ServerAdmin webmaster@example100.com DocumentRoot /home/web/ ServerName example100.com ErrorLog logs/example1.com-error_log </VirtualHost> Code (markup):
or you can do this NameVirtualHost *:80 <VirtualHost *:80> ServerAdmin webmaster@example1.com [B] ServerAlias www.example1.com example100.com www.example100.com[/B] DocumentRoot /home/web/ ServerName example1.com ErrorLog logs/example1.com-error_log </VirtualHost> Code (markup): Hope it Helps