I'm have 2 domain names that I want to host on the same server. I'm using apache win32 on windows 2000. It's not my choice I would have gone with a linux box but this is what is setup.
I've been trying for the last hour to set this up correctly. I've read and searched google.com for some tips and looked on apache.org website and I still haven't done it right. I'll post up my config file just for show. Could someone show me what I'm doing wrong and how to do it so I can host 2 domain names on the same box?

Code:
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at <URL:http://www.apache.org/docs/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost *

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
<VirtualHost www.domainone.com>
 ServerName www.domainone.com
 DocumentRoot "C:/program files/apache group/apache/htdocs"
</VirtualHost>

<VirtualHost www.domaintwo.com>
     ServerName www.domaintwo.com
     DocumentRoot "C:/program files/apache group/apache/htdocs/domaintwo"
</VirtualHost>