0

我现有的链接结构是

http://www.domain.com/compare-smart-phone/?compare_products=SP0006++SP0002++&count_products=2&prawns-details_length=10&chk_compare=SP0006&chk_compare=SP0002&btn_compareproducts=Compare

我可以通过传递所有参数来重定向。但我只想将几个参数传递给新 URL。

我想将此重定向到

http://www.domain.com/smart-phone/?compare_products=SP0006++SP0002++

请帮助我为此编写重定向规则。

4

1 回答 1

0

将此添加到您的 htaccess 文件的文档根目录中:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^compare_products=([^&]+)
RewriteRule ^compare-smart-phone/?$ /smart-phone/?compare_products=%1 [R=301,L]
于 2012-07-25T09:27:41.370 回答