本帖最后由 joyidea 于 2013-05-01 16:05:37 编辑

解决方案 »

  1.   

    淘宝是用 js 跳转的,仅 php 不可能做到
      

  2.   


    这个跳转是淘宝阿里妈妈自动跳转,所以从php的角度上来获取结果是不可能的。
      

  3.   

    <script>
    function goURL( goUrlStr ) {
    if ( typeof(goUrlStr) != 'undefined') {
    var isIe=(document.all)? true : false;
    if(isIe) {
    var linka = document.createElement('a');
    linka.href = goUrlStr;
    document.body.appendChild(linka);
    linka.click();
    } else {
    window.location = goUrlStr;
    }
         }
         return true;
    }
    </script>
    <body><script>goURL('http://www.meilishuo.com/go/?t=19940551183&u=http%3A%2F%2Fitem.taobao.com%2Fitem.htm%3Fid%3D19940551183&spm=2014.12173575.0.34295&out=s68626656');</script></body>