【问题标题】:After file download redirect to index.php文件下载后重定向到 index.php
【发布时间】:2013-09-06 17:51:44
【问题描述】:

我使用此代码下载 zip 文件。文件正在下载但页面没有重定向请任何人都可以提供帮助......

 <a href="downloading-script.php?filename=1-Adob-Flash-player-11.8.800.zip"><img     src="images/download-button.jpg" id="down-button" /></a>

然后 下载-script.php

    <?php
    function output_file($file, $name, $mime_type='')
       {
      if(!is_readable($file)) die('File not found or inaccessible!');

         $size = filesize($file);
       $name = rawurldecode($name);

        $known_mime_types=array(
  "html" => "text/html",
         "htm" => "text/html",
             "exe" => "application/octet-stream",
         "zip" => "application/zip",
        "doc" => "application/msword",
        "gif" => "image/gif",
             "png" => "image/png",
        "jpeg"=> "image/jpg",
              "jpg" => "image/jpg",
            "php" => "text/plain"
          );


      @ob_end_clean(); 

if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');

   header('Content-Type: ' . $mime_type);
  header('Content-Disposition: attachment; filename="'.$name.'"');
  header("Content-Transfer-Encoding: binary");
  header('Accept-Ranges: bytes');

    header("Cache-control: private");
header('Pragma: private');
  header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

  if(isset($_SERVER['HTTP_RANGE']))
    {
   list($a, $range) = explode("=",$_SERVER['HTTP_RANGE'],2);
       list($range) = explode(",",$range,2);
    list($range, $range_end) = explode("-", $range);
      $range=intval($range);
         if(!$range_end) {
        $range_end=$size-1;
        } else {
         $range_end=intval($range_end);
           }

       $new_length = $range_end-$range+1;
   header("HTTP/1.1 206 Partial Content");
         header("Content-Length: $new_length");
   header("Content-Range: bytes $range-$range_end/$size");
     } else {
       $new_length=$size;
      header("Content-Length: ".$size);
             }

     $chunksize = 1*(1024*1024); 
              $bytes_send = 0;
            if ($file = fopen($file, 'r'))
          {
        if(isset($_SERVER['HTTP_RANGE']))
      fseek($file, $range);
       while(!feof($file) && 
 (!connection_aborted()) && 
     ($bytes_send<$new_length)
   )
      {
         $buffer = fread($file, $chunksize);
       print($buffer);
         flush();
   $bytes_send += strlen($buffer);
                  }
     fclose($file);
 } else
   die('Error - can not open file.');
 die();
  }
       set_time_limit(0);

  $file_path='files/'.$_REQUEST['filename'];

   output_file($file_path, ''.$_REQUEST['filename'].'', 'text/plain');

    ?>

我使用此代码下载 zip 文件。文件正在下载但页面没有重定向请任何人都可以提供帮助......

【问题讨论】:

  • 1) 启用错误报告 2) 调试您的代码,以便您可以隔离问题部分 3) plz 不是一个词 4) 正确缩进您的代码 5) .......... .
  • 文件本身就是一个响应。重定向是一种响应。每个请求只能有一个响应。重定向需要在客户端发生,或者 UX 需要更改为不需要它。
  • 没有办法检查这个;没有像 ondownloadready 这样的事件。但是有一些解决方法......检查这个 [stackoverflow.com/questions/2343418/…stackoverflow 上的问题。]

标签: php file redirect download


【解决方案1】:

我在您的代码中没有看到任何执行页面重定向的内容。

要执行一个非常简单的页面重定向,请将其放在进程的末尾:

header("Location: index.php");

【讨论】:

  • 这将在发送内容(例如整个文件)后抛出错误。需要在发送响应之前修改标头,而不是之后。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-12-19
  • 1970-01-01
  • 2017-06-09
  • 2020-05-27
  • 1970-01-01
  • 1970-01-01
  • 2014-09-27
相关资源
最近更新 更多