我想从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'/>";
我做错了什么?