Hello!

I have installed Drupal 6.15 and have a problem with enabling clean URLs. The server test for enabling them is passed successfully, but as soon as I enable them and try to edit a page, I get a "Page not found" exception.

My .htaccess file is the following:

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /
  # Rewrite current-style URLs of the form 'index.php?q=x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>

Thanks a lot,
Chris