Tracking individual links

Joseph

Member
I tried to find it in the forum but I can't so I'd ask...

I would like to track individual links, is it possible?

For example:

text here text here text here text here
<a href="url">click here</a>

text here text here text here text here text here
<a href="url">click here 2</a>


Same URL link, 2 different link location, but I want to track which link gets clicked more.

Is it possible?
 
@Joseph - That's pretty simple. If the url is the same in both links, then simply append a query string param to distinguish them, like:
Code:
text here text here text here text here
<a href="https://www.google.com/?q=1">click here</a>

text here text here text here text here text here
<a href="https://www.google.com/?q=2">click here 2</a>
 
Back
Top