htaccess动态重写

问题描述 投票:1回答:1

例如:https://www.mydomain.de/myproduct/?___store=french&___from_store=germanhttps://www.mydomain.de/myproduct/

我有一个商店,并希望动态永久性地将数百个网址的商店视图重写到同一个网址的一部分。

这对于许多URL,通过301重定向到产品部分

你能帮助我吗?

.htaccess magento redirect permanent
1个回答
0
投票

您可以使用此规则去除查询字符串:

RewriteCond      %{QUERY_STRING}    ___store=
RewriteCond      %{QUERY_STRING}    ___from_store=
RewriteRule      (.*)               $1?     [R=301,QSD,L]

它检查查询字符串是否包含___store=___from_store=,然后在没有查询字符串的情况下永久地重定向到相同的URL。

© www.soinside.com 2019 - 2024. All rights reserved.