How to modify page URL in Google Analytics - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:36:56Zhttp://stackoverflow.com/feeds/question/398110http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/398110/how-to-modify-page-url-in-google-analytics2How to modify page URL in Google Analyticsmbrevoort2008-12-29T17:00:54Z2009-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#3985484Answer by Athena for How to modify page URL in Google AnalyticsAthena2008-12-29T20:17:12Z2008-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#4922434Answer by pelms for How to modify page URL in Google Analyticspelms2009-01-29T16:05:00Z2009-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#6416621Answer by Nicolai for How to modify page URL in Google AnalyticsNicolai2009-03-13T06:33:58Z2009-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>