Hello,

I have a specific problem. I am using clean urls.

This is my folder structure:

includes/
misc/
example/
example/example_file.zip

modules/
...
index.php

Now if I open http://my.drupal.site/example, it redirects me to http://my.drupal.site/example/ (because its a folder, i guess) and then Apache shows the "Forbidden" message.

How would you modifiy these lines in .htaccess

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

To end up with the default Drupal "Not found" page, while keeping http://my.drupal.site/example/example_file.zip still working?

I hope you can help me, Thanks!