Nginx 搜索查询重写规则

Nginx 搜索查询重写规则

目前我有像这样的重写查询

  rewrite ^/category/category-name /index.php?route=information/category-name last;

这对于我的静态页面来说很好,而且我也知道名称。我遇到的问题是每当我想修改我的 opencart 搜索路线时

当前网址

/index.php?route=product/search&filter_name=nike

首选网址

/search/nike

我尝试过以前的方法,但没有任何反应。

答案1

这是你想要的吗?

rewrite ^/search/(.*)$ /index.php?route=product/search&filter_name=$1 last;

重写指令是记录在这里.还有一个有用的资源用于正则表达式。

相关内容