Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是指向域而不是主域上的 utm_source=xxx 参数的反向链接太多。 是否可以在我的 htaccess 中进行重写/重定向以重定向www.mydomain.com/?utm_source=twitterfeed到www.mydomain.com? 因此,无论何时www.mydomain.com/?utm_source=twitterfeed运行,它将被重定向到www.mydomain.com.
www.mydomain.com/?utm_source=twitterfeed
www.mydomain.com
提前感 谢阿亚兹
基本上你必须删除查询字符串,如下所示:
RewriteEngine On RewriteCond %{QUERY_STRING} ^utm_source.*$ RewriteRule (.*) http://www.mydomain.com? [L]
尚未测试,但应该可以工作。
更新
RewriteEngine On RewriteCond %{QUERY_STRING} ^utm_source=twitterfeed.*$ RewriteRule (.*) http://www.mydomain.com? [L]