下载xml文件后重定向


Redirect after download xml file

我使用以下代码下载一个xml文件

<?php
header('Content-type: text/xml');
header('Content-Disposition: attachment; filename="download.xml"');
echo simplexml_load_file('temp.xml');
unlink('temp.xml');
?>

在此之后,我想重定向到index.php。我该怎么做?

header('location...)meta refresh不工作

因为你发送了标题和内容,所以这是不可能的。

你必须先重定向,然后让文件下载到目标网站上。

使用javascript:使您的网站更改两次url

<script>
  location.href="your_php_file_that_downloads_xml.php";
  location.href="/other/site";
</script>