This is from my .htaccess,
Code: Select all
RewriteEngine On
#RewriteBase /
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
RewriteCond %{QUERY_STRING} ^route=checkout/gcheckout/callback$
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
-kath-