我们目前正在使用301重定向,并且正在从网址中删除所有查询参数。每当我们测试utm参数时,它们都会被删除,因此跟踪是一个主要问题,我们的.htaccess文件夹目前看起来像这样:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
任何帮助都将不胜感激。