Okay before everyone just starts laughing I am running Jetbox CMS on this development server and it has similar setting in the .htaccess to Drupal. That said .htaccess Options are apparently not allowed. Not sure if its Apache, php5.1, or MySql 5, but this is the error that I got:
Code:
[Sun Oct 29 16:21:12 2006] [alert] [client 10.xx.;) .194]
/var/www/web3/web/ccs/.
htaccess: Options not allowed here
So to fix the issue:
old code of .htaccess:
Code:
Options -Indexes
Options +FollowSymLinks
changed for PHP5.1:
Code:
# Options -Indexes
# Options +FollowSymLinks
Thank you Till for pointing me in the right direction.