$URL="http://www.villagestone.co.za/mailsendfail.html";
print "<meta http-equiv=\"refresh\" content=\"1;$URL\">";
答案 0 :(得分:2)
啊,现在我明白了。试试这个:
$URL = "http://www.villagestone.co.za/mailsendfail.html";
print "<meta http-equiv=\"refresh\" content=\"1;URL=$URL\">";
IE期望'URL ='前缀,这就是它在Firefox而不是IE中的原因。
答案 1 :(得分:0)
最好通过header
功能重定向
header('Location: '.$URL);
注意:此行必须在输出任何文本之前出现。
答案 2 :(得分:0)
如果您有干净的字符串,最好使用''喜欢:
$URL = 'http://www.villagestone.co.za/mailsendfail.html';
print '<meta http-equiv="refresh" content="1;url=' . $URL . '">';