Hello,
I was recently tasked to build a new website for my lab. I chose Drupal and simply loved the process. The problem I'm running into is configuring the new site properly with our server. My lab, as well as a few upstairs share this server which we simply use to hosts our sites, we don't share a database or anything like that. The root of the server is poseidon-DOT-sunyopt-DOT-edu which used to bring you to a nice little index page with all of the labs. Now it simply takes you to my new site. If I manually enter the old sites address I am brought to the custom 404 page I made for the new site. I want it to go poseidon.sunyopt-DOT-edu/LAB1 or poseidon.sunyopt-DOT-edu/LAB2 or what have you. Each lab site is several pages or nodes.
I separated the Drupal site and the old sites into different htdoc folders (htdocs/backuslab for the drupal site, htdocs2/wwwroot for the old html sites) and made sure to configure the httpd.conf file's document-root to the main xampp folder which houses both htdocs folders. I also made sure the virtualhosts part was un-commented. In httpd-vhosts.conf I entered this:
<Directory: C:/xampp>
Order Deny,Allow
Allow from all
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs/Backuslab
ServerName POSEIDON.OPTNET.EDU:80
</VirtualHost>
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs2/wwwroot
ServerName POSEIDON.OPTNET.EDU:80
</VirtualHost>
I feel like I'm missing something really simple here. Alias? The drupal site is alive and well, I just think it's feeding off the whole server instead of the little plate I want it to have. Any help would be greatly appreciated.