I have an issue in this part myself.
In the rewrite Drupal provides they check to see if the request is a file or a directory, how can I do this in regards to the hiawatha rewrite?
Thanks
What drupal wants:
<Directory /var/www/example.com>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>
What I have made for hiawatha:
UrlToolkit {
ToolkitID = drupal
RequestURI isfile Exit
RequestURI isdir Exit
RequestURI exists Return
Match ^/(.*) Rewrite /index.php?q=$1
}