访问:
http://www.kangbing.com/blood/create/show/infor/123?id=123(post接口)
转发到:
http://www.kangbing.com/blood/create?id=123(post接口)
nginx rewrite 配置:
location /blood/create{
rewrite ^/create/(.*)$ /create permanent;
#rewrite ^/(.*)/create/(.*)$ /$1/create permanent;
}
用shell rewrite ^/(.*)/create/(.*)$ /$1/create permanent;
能够转发到:shell http://www.kangbing.com/blood/create?id=123
但是接口变为 get 请求了。
用 shellrewrite ^/create/(.*)$ /create permanent;
不起作用
需要怎么修改?