
I have been testing this Drupal site on my hiawatha setup in Puppy linux and it was working great with clean urls. I had used the following rules to enable clean urls. The idea is that if someone uses mysite/home, it should redirect them to mysite/index.php?q=home. But, they don't seem to be working here. Any ideas? You can see http://puppy.prit.us/. Not sure, if its some silly mistake from my side.VirtualHost {
Hostname = mysite
....
UseToolkit = drupal
}
UrlToolkit {
ToolkitID = drupal
RequestURI exists Return
Match ^(.*) Rewrite /index.php?q=$1
}
Match ^/(.*) Rewrite /index.php?q=$1

. Moreover we keep discussing about the website and I personally am not satisfied with Drupal. Maybe its a problem with our setup or some modules we are using. It takes a long time to load and has got suspended due to CPU usage by the host multiple times. So we are considering building static front end with some dynamic parts displaying here and there. Do you have any recommendations?<Directory /var/www/example.com>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>
UrlToolkit {
ToolkitID = drupal
RequestURI isfile Exit
RequestURI isdir Exit
RequestURI exists Return
Match ^/(.*) Rewrite /index.php?q=$1
}url: /site/default/files/test.png
new: /index.php?q=site/default/files/test.png
url: /site/default/files/test.png
new: /site/default/files/test.png