我正在尝试重定向
http://www.example.com/component/plant/?view=plant&plant-id=477 到 http://www.example.com/component/plant/?view=plant&id=477
我需要最后从网址中删除单词植物。我试过了,但没有得到正确的结果
RewriteEngine On
# Capture (\d+) into %1
RewriteCond %{QUERY_STRING} plant-id=(\d+) [NC]
# And rewrite (redirect) into id=%1
RewriteRule ^(.*)$ /component/plant/?view=plant&$1?id=%1 [L,R=301]
但这对我来说效果不佳。