我正在使用此重写规则将 http://example.com/a-b-c?id=learn-more 重定向到
http://example.com/abc?id=learnmore
rewrite ^/a-b-c?id=learn-More http://example.com/abc?id=learnMore permanent
但它不起作用!!它确实重定向到
http://example.com/abc?id=learn-more(学习更多不会转换为学习更多)。
如何实现这一目标?
答案 0 :(得分:0)
location = /a-b-c {
if ($arg_id = learn-More) {
return 301 /abc?id=learnMore;
}
}