你所说的“返回内容”和“跳转”指的是?

解决方案 »

  1.   

    我看你要跳转的页面是不是那种处理页面,比如说下载等。像这样的不会跳转,只是去执行
      

  2.   

    你的意思是执行这个文件
    <?php
    // We'll be outputting a PDF
    header('Content-type: application/xml');// It will be called downloaded.pdf
    header('Content-Disposition: attachment; filename="$filename"');// The PDF source is in original.pdf
    readfile($filename);
    ?>