I decided to give two rewrite rules, depending on the port used for the request (80 for a normal HTTP request, 443 for an SSL one). Just replace this line:
by:Code:RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
It worked for me. Unfortunately I now have to wait for a Paypal IPN fix.Code:RewriteCond %{SERVER_PORT} ^80 RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L] RewriteCond %{SERVER_PORT} ^443 RewriteRule ^(.*) craftmagick/index.php?/$1 [E=VAR1:$1,QSA,L]
Bookmarks