我想用 htaccess 重定向这个页面
products_filter.php?f16%5B0%5D=bla+bla+bla&cPath=72&M_ID=12x
到
products_filter.php?f16%5B0%5D=bla+bla&cPath=72&M_ID=12x
我试过这个(和许多其他方法)
RewriteCond %{QUERY_STRING} ^f16%5B0%5D=bla+bla+bla$
RewriteRule ^products_filter\.php$ http://www.example.com/products_filter.php?f16%5B0%5D=bla+bla&cPath=72&M_ID=12x [L,R=301]
我在这里做错了什么?