Whenever I test query parameters domain.com/gclid=test it returns only domain.com and strips the parameters. It does the same with utm parameters. We need the parameters to be appended for tracking purposes. We did recently migrate web sites and are using a 301 redirect. I’m not 100% sure that it is the issue but it could be. It is a wordpress site and our .htaccess file is the wordpress standard like so:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I just need to configure the site to pass all parameters through. Any help would be appreciated.