Just finished moving client site from Apache to Nginx, and upon testing I noticed when I try to remove some product from the cart, it wasn’t working . All is happening is to reload the page.
It turns out that the problem is in my Nginx config (as I suspected).
A really simple fix.
If you have section like this in your config file:
location / { try_files $uri $uri/ /index.php; }
you will need to add ?$args after index.php, so it is going to look like this:
location / { try_files $uri $uri/ /index.php?$args; }