[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] MULTIPLE SITES
- Subject: Re: [cobalt-users] MULTIPLE SITES
- From: Kris Dahl <krislists@xxxxxxxxxxxxx>
- Date: Mon Jul 24 09:51:11 2000
on 7/21/00 9:24 PM, N.MAHESH KUMAR at maheshk@xxxxxxxxxxx wrote:
> Use a Re-director from RADWARE.
>
> Regds
> N.Mahesh Kumar.
>
> -----Original Message-----
> From: reema [SMTP:reema@xxxxxxxxx]
> Sent: Thursday, July 20, 2000 11:42 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: [cobalt-users] MULTIPLE SITES
>
> I have a website configured on my RAQ3 i.e. www.website.com
>
> I want to ensure that www.website.co.uk, www.website.net etc etc will all
> divert to www.website.com
>
> How do I do this?
With all due respect, you are talking about using a load balancing solution
to fix a simple Apache/DNS configuration issue. Not the recommended way to
go.
Reema: You basically need to create A records for each of the hostnames
listed above and make sure they are pointed to the same IP. From that
point, you just have to either configure IP based virtual hosting (all
requests to that IP essentially serve up www.website.com) or you configure
apache to read multiple name-based virtual hosts to the same web path. THe
latter is probably what you want to do.
i.e.
<VirtualHost website.com>
ServerName www.website.com
ServerAlias www.website.co.uk www.website.net
...
</VirtualHost>
-k