Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a site that contains the file

redirect.php?id=123

It redirects folks to another site using an id it pulls from the database. I'd like to track the page on Google Analytics, see where users are coming from, and what popular sites they're going to.. etc. I currently set up the page so that it pulls (with PHP) the link from the database, and outputs the ga.js stuff and a javascript redirect.

The issue is that I'm getting the data on my analytics dashboard as if every id is a different page..

What is a better way to do this?

share|improve this question

1 Answer

If you want to check for pages of the type redirect.php?id=x then the page Carlos links to is how you would do it.

You would want to exclude the id parameter from your search. Then Analytics would combine all the redirect.php?id=1 redirect.php?id=2 redirect.php?id=3 pages as just a single page named redirect.php

How do I exclude query parameters from my reports?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.