某些网址在?content_only=1
内的单个产品页面上有参数PrestaShop
。我想将这些参数重定向到?content_only=0
。
URL结构如下所示: https://www.onlineruitershop.nl/paardendekens/3953-esperia-two-fleece-deken.html?content_only=1 这应该更改为https://www.onlineruitershop.nl/paardendekens/3953-esperia-two-fleece-deken.html?content_only=0
第一个/
是类别之后,第二个/
之后是产品的名称和ID。这应该不受影响。
感谢。
答案 0 :(得分:1)
您可以尝试以下规则:
RewriteCond %{QUERY_STRING} ^(.*)content_only=1(.*)$
RewriteRule ^(.*)$ /$1?%1content_only=0%2 [L,R=301]