When a visitor add a product to their basket, they're redirected to their shopping cart. However, this takes a "302 Moved Temporarily" redirect to get there.
If I use Firebug to examine what happens, I cannot figure out where this 302 is needed for. Furthermore, this 302 redirect takes for my server 1 sec (!) to find the new location... Since the whole page is loaded within 4 seconds so 1 second is too much :)
The steps that happen are from the view of a visitor:
1) add to cart
2) http://domain.com/checkout/cart/add/uenc/aHR0cDovL3Rlc3Quc3BlZWwtcGxlemllci5ubC9jaG9jb2xhZGUtZHVpbS1pLWxpa2UuaHRtbA,,/product/6/form_key/vJNUzVWejuquURfw/?form_key=vJNUzVWejuquURfw&product=6&qty=1&related_product= (this gives a 302 Redirect)
3) http://domain.com/checkout/cart/ (this gives a 200 response, which is ok)
Where should I look so I can prevent this 302 redirect? - already checked .htaccess - info.phtml for formkey variable in folder ./template/checkout/onepage/review
Any help would be great ;)