重定向 utm_source 以适应多语言网页

重定向 utm_source 以适应多语言网页

我有https://www.example.com/page-name/?utm_source=dlvr.it&utm_medium=twitter

我在 .htaccess 文件中添加了以下代码并将其重定向到https://www.example.com/页面名称/

RewriteEngine On
RewriteCond %{QUERY_STRING} ^(utm_source) [NC]
RewriteCond %{REQUEST_URI} ^/$ [OR]
RewriteCond %{REQUEST_URI} ^(.*)$ [NC]
RewriteRule ^ %{REQUEST_URI}? [L,R=301]

但是多语言页面不会使用此代码重定向。

现在,我该如何重定向多语言页面?

https://www.example.com/ar/page-name/?utm_source=dlvr.it&utm_medium=twitter

https://www.example.com/ar/page-name/

或者

https://www.example.com/fr/page-name/?utm_source=dlvr.it&utm_medium=twitter

https://www.example.com/fr/page-name/

谁都可以帮帮我。

相关内容