在自定义错误页面中存在一个让我烦恼的问题。当我访问该页面时,它显示错误页面而不重定向。我想在website上修复此错误。 它显示错误的代码如下:
[I][COLOR=#010293]<script language="javascript">
window.location.href = "[URL]mysite.org/123.php[/URL]"
</script>
<meta http-equiv="refresh" content="0;url=[URL]mysite.org/123.php[/URL]">[/COLOR][/I]
你能描述出问题是什么吗?
任何帮助将不胜感激。
答案 0 :(得分:0)
如果要重定向
通过HTML然后在HEAD标记
中使用<meta http-equiv="refresh" content="0; URL='http://myoryoursite.org/123.php'" />
通过JavaScript然后使用window.location.href = "http://myoryoursite.org/123.org";
通过php然后在PHP标记中使用header('Location: http://myoryoursite.org/123.php'); exit;
。
所以你应该首先决定你想要使用哪种方式。