|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
|||||||
| New Webmasters ask "How-To" questions here. This is where other fucking Webmasters help. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Mar 2007
Posts: 385
|
Link tracking/masking questions
Hey guys, I was wondering if there is a script or whatsoever, that track my clicks. I want to know how many times or on what links the visitors have clicked.
Also wondering how i hide my clicks like www.domainname.com/go/nameofsponser (can this be done in .htacces) or what. Thnx for the input guys ;) |
|
|
|
|
|
#2 |
|
Confirmed User
Industry Role:
Join Date: Jan 2004
Location: Wisconsin
Posts: 4,517
|
|
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Mar 2007
Posts: 261
|
AFAIK you can track your clicks via Google Analytics. If it comes to hiding links from search engine spiders I do it this way:
1. Create folder in your domain directory. (ie domain-name.com/redirects/) 2. Disallow access for all spiders to this directory via robots.txt User-agent: * Disallow: /redirects 3. Create an php file for each link you want to hide and place them in redirects folder (ie. nastydollars.php). Inside the file place a header location redirect: ?php header("Location: http://www.nastydollars.com/"); ? 4. Now link only to files you have created (http://domain-name.com/redirects/nastydollars.php).
__________________
|
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Mar 2007
Posts: 385
|
Thnx
|
|
|
|