I need to point two domain names to one server. It is an Apache Linux server.
I understand that I can create two A records in the DNS pointing to the same IP. But how do I configure the Apache server, mail server, etc.?
|
I need to point two domain names to one server. It is an Apache Linux server. I understand that I can create two A records in the DNS pointing to the same IP. But how do I configure the Apache server, mail server, etc.?
| |||||||
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
In your DNS, point both domains to the same IP. In httpd.conf add a ServerAlias directive for that domain:
(You may need to look in another file if httpd.conf has any Then restart Apache:
For details on configuring Apache name-based hosts look at: | ||||
|
feedback
|