Olaf Lautenschlaeger wrote:
> On Friday, February 02, 2007 11:59 AM [GMT+1=CET],
> Andreas Matthias <[EMAIL PROTECTED]> wrote:
>
>> But if I am trying to connect to https://localhost/drupal/ the
>> RewriteRule doesn't seem to be executed.
>
> You probably n
My RewriteRule is working for http connections but not for https
connections.
In my .htaccess I have the following RewriteRule:
RewriteEngine on
RewriteBase /drupal/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
This