How i can true redirect have:
http://site.ru/product/1/?PA_1=2
pagination
i want redirect all page with
http://site.ru/product/(.*)/?PA_1=2 on
Try this but not work
location ~ ^/product/(.*)/$ {
if ($request_uri ~ ^/product/(.*)/\?PA_1=2) {
return 301 /$1;
}
}