The aliasing effect works. when I go to scribner.org it goes to the index.html, but when I type in scribner.net it doesn't go to index2.html. I put 2 records in the hosts file for each virtual host, and I put the following into my httpd.conf file
Code:
NameVirtualHost 192.168.10.80
<VirtualHost 192.168.10.80>
ServerName www.scribner.org
DocumentRoot /www/scribner.org/index.html
</VirtualHost>
<VirtualHost 192.168.10.80>
ServerName www.scribner.net
DocumentRoot /www/scribner.net/index2.html
</VirtualHost>
any ideas on how I can get scribner.org to display index.html AND get scribner.net to display index2.html?