你用程序发个请求(curl,fsockopen,fopen...的都行),把点击的页面作HTTP_REFERER传过去看行不行?

解决方案 »

  1.   

    写个程序,用PHP行不行?是不是要VC之类?
      

  2.   

    当然是PHP, PHP里的curl很好用啊
      

  3.   

    Once you've compiled PHP with CURL support, you can begin using the CURL functions. The basic idea behind the CURL functions is that you initialize a CURL session using the curl_init(), then you can set all your options for the transfer via the curl_setopt(), then you can execute the session with the curl_exec() and then you finish off your session using the curl_close(). Here is an example that uses the CURL functions to fetch the example.com homepage into a file: 例子 1. Using PHP's CURL module to fetch the example.com homepage<?php$ch = curl_init("http://www.example.com/");
    $fp = fopen("example_homepage.txt", "w");curl_setopt($ch, CURLOPT_FILE, $fp);
    curl_setopt($ch, CURLOPT_HEADER, 0);curl_exec($ch);
    curl_close($ch);
    fclose($fp);
    ?>  
     
      

  4.   

    模拟正常发送的header就可以了
      

  5.   

    要安装那个php_curl.dll,有时候经常出错。