Mobile app version of vmapp.org
Login or Join
Karen161

: Side effects of using redirect pages to track external links? I have been part of a push to implement better analytics on our company's web site over the last few months using Google Analytics.

@Karen161

Posted in: #GoogleAnalytics #Redirects

I have been part of a push to implement better analytics on our company's web site over the last few months using Google Analytics. One request that has come in is for the ability to see clicks to outbound links (such as those to our Facebook page, Twitter feed, etc.) in the GA In-Page Analytics report.

From my research, it looks like the only way to do this is by first redirecting the outbound link to an intermediate page, which will then immediately redirect to the external site (this is ASP.NET, so probably through Response.Redirect or something similar). For example, we would change our current Facebook link from facebook.com/ourcompanypage to something like (our company website).com/redirect.aspx?url=facebook.com/ourcompanypage. This way, to Google Analytics it will look like the person went to an internal page which will then appear in the In-Page analytics report.

What I would like to know is if there are any potential issues using a redirect like this may raise, for example on things like SEO or usability?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Karen161

3 Comments

Sorted by latest first Latest Oldest Best

 

@Hamaas447

Another problem, believe it or not, is the risk of certain links not working at all if badly implemented. I'm right now having problems with a link in a forum to Google Plus where the + sign in the path (not quarry) is replaced by %20 (a space) resulting redirection to an invalid location.

10% popularity Vote Up Vote Down


 

@Mendez628

SEO. The linked sites may not receive full PageRank from a redirect URL. Some SEOs believe there is evidence that sites which link out to other parts of the web are viewed more approvingly by Google than sites that do not link out to anyone, so there could be a slight negative value to keeping all of your links inside.

Usability. In addition to the slight time delay, a redirect URL makes it harder for the person to see where they are going by preveiwing the URL in the status bar, so they may be less likely to click.

Security. This is only a minor issue, but allowing a redirect from your own website makes it possible for malicious users to give someone a URL like "www.yoursite.com/redirect.aspx=fhdfweelkjelkfj.com" which could take a user to a malicious website while appearing to have your safe address on it, unless you are very selective about how your redirect works.

Also, as mentioned by other users there are alternatives to tracking these metrics. As far as your Facebook page goes, it has its own tracking through View Insights where you can see your referrals. And of course there are ways to use javascript for more complete solutions.

10% popularity Vote Up Vote Down


 

@Sarah324

There would be 2 primary side-effects:


Loss of PageRank value to the linked web site.
Slower speeds because of the unnecessary middle step. (minor)


--

For the PageRank value, Google sees these outbound link and confers some amount of SEO value to the linked web site. If, on the other hand, you're merely linking to yourself and that link redirects to another web site, then it will receive less value from the link.

If you're going to do a redirect it's probably better to use a 301 redirect (known as a Permanent Redirect) than a 302 redirect (a Temporary Redirect). Using a 301 redirect it's possible that Google will still confer PageRank value to the outbound link.

--

However, Paul is correct in his comment. It would be better to use Javascript and event tracking. This is also the method that Google recommends:
www.google.com/support/analytics/bin/answer.py?answer=55527

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme