我试图创建一个写入文件然后返回上一页的php代码。 这是我的代码:
<?php
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
$file = 'data.txt';
$current = file_get_contents($file);
$current++;
file_put_contents($file, $current);
header("location:javascript://history.go(-1)");
exit;
?>
当我在Google Chrome中运行它时,效果非常好。但在互联网浏览器中它说:
此页面无法显示
任何想法该怎么办?我尝试过更改很多东西,使用其他javascript方法转到上一页,而php和其中没有一个工作..
P.S。即使我在Internet Explorer中打开它,脚本也会运行,但当它到达重定向部分时,它只显示错误并且不会重定向。
直播示例:
send.php:http://klh-dev.com/send.php
data.txt:http://klh-dev.com/data.txt