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
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
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