1

Example: http://dearearth.net/news/?cbg_tz=240

Plugin site with query string example and explanation: http://plugins.righthere.com/custom-backgrounds/multiple-schedule/?cbg_tz=480

I had come across in the past of a way to remove the unwanted ?cbg_tz=240 which is appended to all the URL. This seems to be affecting my analytics and creating dupes wth/ without the string...

I believe it's fairly simple with an .htaccess edit. Anyone have the .htaccess settings which would accomplish this task?

Thanks!

1 Answer 1

2

Something similar: how to remove url parameters in htaccess

This should work:

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{QUERY_STRING} .
    RewriteRule (.*) $1?
</IfModule>
Sign up to request clarification or add additional context in comments.

1 Comment

I have the same issue. I have applied this answer and my site is working stop.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.