将变量URL(会员链接)重定向到索引

时间:2015-08-05 21:26:59

标签: .htaccess redirect google-analytics

我正在尝试将带有Google Analytics(分析)标识符的合作伙伴链接重定向到我的索引,以便用户无法查看联盟会员的变量。

我尝试了以下但不知何故总是没有发生

RedirectMatch 301 mydomain.de/?utm_source=source&utm_medium=pmediumtype&utm_content=contenttype&utm_campaign=campaignname /$1

Redirect 301 mydomain.de/?utm_source=source&utm_medium=pmediumtype&utm_content=contenttype&utm_campaign=campaignname /index.php

打开的网址看起来像

mydomain.de/?utm_source=source&utm_medium=pmediumtype&utm_content=contenttype&utm_campaign=campaignname

我希望它打开mydomain.demydomain.de/index.php

这些变量也可能附加到

  

mydomain.de/kategorie/
  mydomain.de/kategorie/kategorie/
  mydomain.de/kategorie/kategorie/kategorie/
  mydomain.de/kategorie/articlename.html
  mydomain.de/kategorie/kategorie/articlename.html
  mydomain.de/kategorie/kategorie/kategorie/articlename.html

总是将这些变量置于其后面

?utm_source=deathpurge&utm_medium=partner&utm_content=text&utm_campaign=clan

Google网址构建器reference

1 个答案:

答案 0 :(得分:1)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此规则:

RewriteEngine On

RewriteCond %{QUERY_STRING} utm_source=\w+ [NC]
RewriteRule ^ /index.php? [L,R=302]