Howdy All;
This has to be the most support friendly app. that I've had the good fortune to work with. All of you guys rock, so keep up the great work...
Briefly, I set up Drupal and for the most part things are running smoothly. However, when the page opens to the index page; I get a "Page Not Found" error.
http://www.911media.org/cms/
The drupal index.php file is in the directory cms/index.php.
Some other bits of the code:
# Customized error messages.
ErrorDocument 404 index.php
# Set the default handler.
DirectoryIndex index.php
Also, I was trhinking that the rewrite_base could have something to do with it:
RewriteBase /cms
# Rewrite old-style URLs of the form 'node.php?id=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]
# Rewrite old-style URLs of the form 'module.php?mod=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /cms/index.php?q=$1 [L,QSA]
Oh, and here is what my $base_url = 'http://www.911media.org/cms' is set too...