Forum Moderators: phranque
http://www.example.com/?gclid=abcdetc
should be:
http://www.example.com/redirect,?gclid=abcdetc
http://www.example.com/page/?gclid=abcdetc
should be:
http://www.example.com/page/redirect,?gclid=abcdetc
http://www.example.com/page/subpage/?gclid=abcdetc
should be:
http://www.example.com/page/subpage/redirect,?gclid=abcdetc
This is a part of my htaccess:
## search for query string "gclid"
RewriteCond %{QUERY_STRING} ^(gclid=.*)$
## ignore url's with "redirect,"
RewriteCond %{REQUEST_URI} !(.*?)redirect,(.*?)$
... a redirect rule over here ? ...
## get mvc index to build site
RewriteRule (.*) /html/$1 [L]
Please tell me how to solve this.
[edited by: encyclo at 2:20 am (utc) on June 5, 2009]
[edit reason] switched to example.com [/edit]
A search of question+mark at Webmaster World [google.com] provided many references.