从php文件重定向到本地HTML文件

时间:2019-04-25 09:57:00

标签: javascript php

我想从php文件重定向到特定的本地html文件。

我尝试了以下操作:

echo "<script type='text/javascript'> 
window.location.href='file://C:/DescMan/abc.html';</script>";

没有成功。没有错误,只有白页带有我的本地php地址。

我也尝试过:

header('Location: file://C:/DescMan/abc.html');

header('Content-Disposition: filename="abc.html"');readfile("C:/DescMan/abc.html");

echo "<meta http-equiv='refresh' content='0'; url='C:/DescMan/abc.html'/>";

我做错了什么?

0 个答案:

没有答案