Drupal Clean URL .htacccess with DreamHost, GODaddy and Bluehost

DreamHost users have to use following code in .htaccess for clean URL

I haven’t test on godaddy and blueshot, but they should work the same :)

<IfModule mod_rewrite.c>

   RewriteEngine on

   RewriteBase /

   RewriteCond %{REQUEST_FILENAME} !-f

   RewriteCond %{REQUEST_FILENAME} !-d

   RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

</IfModule>