Hi JoakimR;
This will probably work.
location /filters {
rewrite .* /index.php?controller=filters permanent;
}
Permanent means, address that you try to access is moved to new address.QSA process is automatically doing in Nginx rewrite condition.Hence, you don't have to do an extra thing.
This will probably work.
location /filters {
rewrite .* /index.php?controller=filters permanent;
}
Permanent means, address that you try to access is moved to new address.QSA process is automatically doing in Nginx rewrite condition.Hence, you don't have to do an extra thing.