Hi. I'm having problem accessing a sub directory of my drupal site. I installed a web stats application in a sub directory of my site and protected it with .htaccess (through my web host's (Dreamhost) control panel ) but when I try to go there I get the "page not found" page in drupal. There's a "!-d" rewrite condition in the drupal .htaccess file but apparently it's not recognizing it as a directory. I even tried adding a rewrite condition and put the sub directory name in it to try to abort the rewrite rule if the sub directory name is in the %{REQUEST_FILENAME} variable. Anyway, I don't know how to resolve this, I'll post my .htaccess files below.
-- .HTACCESS FOR DRUPAL DIRECTORY --
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
Order deny,allow
Deny from all
# Set some options.
Options -Indexes
Options +FollowSymLinks
# Customized error messages.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.
# PHP 4, Apache 1
php_value magic_quotes_gpc 0