【发布时间】:2023-07-21 11:59:02
【问题描述】:
我正在尝试将未启用 javascript 的用户重定向到我们的帮助页面 (help.php),特别是关于启用 javascript 的部分 (help.php#nojavascript)。
但是,我的元刷新不起作用!它不断刷新同一页面!我尝试使用 .html 扩展名重定向到不同的页面,这有效,为什么这不起作用?
...
</script>
<!-- if user doesn't have JS enabled, take them to help page -->
<noscript>
<meta http-equiv="Refresh" content="3;url=help.php" />
</noscript>
</head>
...
【问题讨论】:
-
你能显示重定向工作时的样子吗?文件扩展名在这里应该没有区别。
标签: php html refresh meta-tags noscript