I'm having a problem with the AdWords ad, when a person clicks on the advertiser it should be redirected to the homepage, but then it is redirected to another search page, with the following url: link
The .htaccess file looks like this:
Options All -Indexes
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{REQUEST_URI} !(/retorno_payu\.php|/retorno_payu_assinaturas\.php[^.]*)$ [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [QSA]
<IfModule deflate_module>
AddOutputFilterByType DEFLATE text/plain text/html
AddOutputFilterByType DEFLATE text/xml application/xml application/xhtml+xml application/xml-dtd
AddOutputFilterByType DEFLATE application/rdf+xml application/rss+xml application/atom+xml image/svg+xml
AddOutputFilterByType DEFLATE text/css text/javascript application/javascript application/x-javascript
AddOutputFilterByType DEFLATE font/otf font/opentype application/font-otf application/x-font-otf
AddOutputFilterByType DEFLATE font/ttf font/truetype application/font-ttf application/x-font-ttf
</IfModule>
<IfModule mod_headers.c>
<Filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$">
Header set Cache-Control "max-age=600, public"
</Filesmatch>
<Filesmatch "\.(js)$">
Header set Cache-Control "max-age=600, private"
</Filesmatch>
</IfModule>
<IfModule php5_module>
#seta o tempo da session para expirar após 8 horas
php_value session.cookie_lifetime 28800
php_value session.gc_maxlifetime 28800
</IfModule>
Thank you!