How to modify page URL in Google Analytics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:36:56Z http://stackoverflow.com/feeds/question/398110 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/398110/how-to-modify-page-url-in-google-analytics 2 How to modify page URL in Google Analytics mbrevoort 2008-12-29T17:00:54Z 2009-05-29T14:05:31Z <p>How can you modify the URL for the current page that gets passed to Google Analytics? </p> <p>(I need to strip the extensions from certain pages because for different cases a page can be requested with or without it and GA sees this as two different pages.) </p> <p>For example, if the page URL is <strong><em><a href="http://mysite/cake/ilikecake.html" rel="nofollow">http://mysite/cake/ilikecake.html</a></em></strong>, how can I pass to google analytics <strong><em><a href="http://mysite/cake/ilikecake" rel="nofollow">http://mysite/cake/ilikecake</a></em></strong> instead?</p> <p>I can strip the extension fine, I just can't figure out how to pass the URL I want to Google Analytics. I've tried this, but the stats in the Google Analytics console don't show any page views:</p> <blockquote> <p>pageTracker._trackPageview('cake/ilikecake');</p> </blockquote> <p>Thanks, Mike</p> http://stackoverflow.com/questions/398110/how-to-modify-page-url-in-google-analytics/398548#398548 4 Answer by Athena for How to modify page URL in Google Analytics Athena 2008-12-29T20:17:12Z 2008-12-29T20:17:12Z <p>Two possibilities come to mind: </p> <ol> <li><p>it can take a while, up to about 24 hours, for visits to be reflected in the Analytics statistics. How long ago did you make your change? </p></li> <li><p>try beginning the pathname with a "/", so </p> <pre><code>pageTracker._trackPageview('/cake/ilikecake'); </code></pre> <p>and then wait a bit, as per the first item.</p></li> </ol> http://stackoverflow.com/questions/398110/how-to-modify-page-url-in-google-analytics/492243#492243 4 Answer by pelms for How to modify page URL in Google Analytics pelms 2009-01-29T16:05:00Z 2009-05-29T14:05:31Z <p>You could edit the GA profile and add custom filters ...</p> <p>Create a 'Search and Replace' custom filter, setting the filter field to 'Request URI' and using something like:</p> <p>Search String: <code>(.*ilikecake\.)html$</code></p> <p>Replace String: <code>$1</code><br /> (was <code>\1</code>) </p> http://stackoverflow.com/questions/398110/how-to-modify-page-url-in-google-analytics/641662#641662 1 Answer by Nicolai for How to modify page URL in Google Analytics Nicolai 2009-03-13T06:33:58Z 2009-03-13T06:33:58Z <p>Usually you have the ga script code at the end of your file, while special _trackPageviews() calls are often used somewhere else.</p> <p>Have you made sure you have your call to pageTracker._trackPageview() after you have defined the pagetracker?</p> <p>Like this:</p> <pre><code>var pageTracker = _gat._getTracker("UA-XXXXXXX-X"); pageTracker._trackPageview(); </code></pre> <p>otherwise you just get a JavaScript error I suppose.</p>