我想重写一个网址
/shop/?category=kitset-kitchens
至
shop/category/kitset-kitchens
我尝试了什么:
rewrite ^/shop.*$ /shop/category/$arg_category permanent;
goes to:
shop/category/kitset-kitchens?category=kitset-kitchens
如果我输入“?” 像这样:
rewrite ^/shop.*$ /shop/category/$arg_category? permanent;
goes to:
shop/category/
我尝试使用变量,但结果是一样的。只要 $args 设置为 '' 所有其他变量都是空的,否则,它会在 URL 的末尾添加 get 查询。我究竟做错了什么?
我不想使用条件