Multiple Domains to One Virtual Host | Wildcard Host (shared hosting)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T05:35:10Zhttp://stackoverflow.com/feeds/question/621819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/621819/multiple-domains-to-one-virtual-host-wildcard-host-shared-hosting0Multiple Domains to One Virtual Host | Wildcard Host (shared hosting)?Codex732009-03-07T13:08:51Z2009-03-07T19:55:16Z
<p>I have the following task:
Create one website which is accessible with 20 different domains names.</p>
<p>Same files, same folder, same ip.</p>
<p><strong>Question (shared hosting):</strong>
Can this be accomplish with a bare cname's pointing to the same common subdomain or do we need one static ip for all?</p>
<p>The problem is sure shared hosting and I'm trying to avoid creating manually "cpanel addon domains" one by one. Shared hosting doesn't allow to modify httpd conf which allows me to create a wildcard virtual host for an IP. </p>
<p>I guess my question is auto answered; I'll need a static unless I'm only using subdomain's w wildcard, which works on shared hosting. "*.domain.com", "two.domain.com", "three.domain.com" => directory/</p>
http://stackoverflow.com/questions/621819/multiple-domains-to-one-virtual-host-wildcard-host-shared-hosting/621828#6218283Answer by Paul Dixon for Multiple Domains to One Virtual Host | Wildcard Host (shared hosting)?Paul Dixon2009-03-07T13:14:00Z2009-03-07T13:14:00Z<p>I think you have answered your own question, the options open to you are</p>
<ul>
<li>Add ServerAlias entries to the vhost config, via whatever means available to you</li>
<li>Ensure the default virtual host on the target IP is the one which handles your site</li>
</ul>
http://stackoverflow.com/questions/621819/multiple-domains-to-one-virtual-host-wildcard-host-shared-hosting/622379#6223792Answer by Alnitak for Multiple Domains to One Virtual Host | Wildcard Host (shared hosting)?Alnitak2009-03-07T19:55:16Z2009-03-07T19:55:16Z<ol>
<li><p>If you use a CNAME (or indeed an A record pointing to the same IP address) then you must, as Paul says, either have <code>ServerAlias</code> entries in <code>httpd.conf</code>, or point them at the <code>default</code> virtual host</p></li>
<li><p>If you can't do that, host 19 of the domain names at some other web host, and then use HTTP redirect to get users to the "preferred" domain name. However if you do this then the domain name will change in the user's address bar.</p></li>
</ol>