Background: I inherited a web server that serves up files from /var/www/html. The server used to serve up files from the following locations:
/var/www/html/alpha/index.php
/var/www/html/bravo/index.php
/var/www/html/charlie/index.php
You could get to these sites from the web using:
http://apples.mysite.edu/alpha
http://apples.mysite.edu/bravo
http://apples.mysite.edu/charlie
http://apples.mysite.edu/drupal <-- this one was added later by someone else
Problem: Someone has gone in and added a drupal site directory, now all the other sites are inaccessible (404 not found when I check using HTTPFox) and are being re-directed to the drupal site. That means my alpha,bravo,charlie websites are no longer reachable.
Question: How many different ways could someone have messed with the server config to cause this result? I need to check all the different ways so I can 1) fix it, and 2) know what to watch for should someone try this again.