Problems:
- Click on cart or checkout or my-account and 404 not found
- Clicking shopping cart red item delete button doesn't delete the cart item.
- Cart only worked with permalinks set to "Default" i.e. not any rewriting
Possible cause:
Bad nginx configuration
# before
location / {
try_files $uri $uri/ /index.php;
}
# fixed
location / {
try_files $uri $uri/ /index.php?$args;
}

0 Comments