Re: [EMAIL PROTECTED] RewriteRule not executed with https

2007-02-02 Thread Krist van Besien
On 2/2/07, Andreas Matthias <[EMAIL PROTECTED]> wrote: 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_FILENAM

Re: [EMAIL PROTECTED] RewriteRule not executed with https

2007-02-02 Thread Olaf Lautenschlaeger
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 need to have 'RewriteEngine On' (and of course all the rule set too) for the http

[EMAIL PROTECTED] RewriteRule not executed with https

2007-02-02 Thread Andreas Matthias
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