Forum Moderators: phranque
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/(checkout.*)$
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^.*$ [%{SERVER_NAME}%{REQUEST_URI}...] [L]
RewriteCond %{REQUEST_URI}!^/(css¦images¦process)/(.*)$
RewriteRule ^(.*)$ /process/index.php [L]
C.
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/checkout.*$
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^.*$ [%{SERVER_NAME}%{REQUEST_URI}...] [L]
RewriteCond %{REQUEST_URI}!^/checkout.*$
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^.*$ [%{SERVER_NAME}%{REQUEST_URI}...] [L]
RewriteCond %{REQUEST_URI}!^/(css¦images¦js¦process)/(.*)$
RewriteRule ^(.*)$ /process/index.php [L]
RewriteEngine on
RewriteCond %{REQUEST_URI}!^/(css¦images¦js¦process)/.*$
RewriteRule ^.*$ /process/index.php
RewriteCond %{REQUEST_URI} ^/checkout.*$
RewriteCond %{SERVER_PORT}!^443$
RewriteRule ^/.*$ [%{SERVER_NAME}%{REQUEST_URI}...] [R,L]
RewriteCond %{REQUEST_URI}!^/checkout.*$
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^/.*$ [%{SERVER_NAME}%{REQUEST_URI}...] [R,L]
;)