Created
December 31, 2012 09:34
-
-
Save rotten77/4418563 to your computer and use it in GitHub Desktop.
Aby nedocházelo k indexování duplicitního obsahu při použití měřícího odkazu s parametrem (např. .../?utm_source=zdroj&utm_medium=medium&utm_campaign=nazev) použijeme místo otazníku ? křížek #. Je nutné pro to ale upravit Google Analytics měřící kód a pro případ, že se někde objeví měřící odkaz s parametrem, také přesměrování pomocí .htaccess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Do JS kódu: | |
_gaq.push(['_setAllowAnchor', true]); | |
Do .htaccess: | |
RewriteCond %{QUERY_STRING} ^(utm_.*)$ | |
RewriteRule ^(.*)$ /$1#%1? [R=301,NE,L] | |
RewriteCond %{QUERY_STRING} ^(.*?)&(utm_.*)$ | |
RewriteRule ^(.*)$ /$1?%1#%2 [R=301,NE,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment