用于重定向的 window.location (JS) vs header() (PHP)
2022-08-30 19:39:52
使用 JS :(在标记中)<head>
<script>window.location="https://stackoverflow.com";</script>
使用 PHP : (在标签中)<head>
header('Location: https://stackoverflow.com');
end();
我应该使用哪一个?还是另一个?
那么使用呢?<meta>
<meta http-equiv="refresh" content="0;url=https://stackoverflow.com"/>
很多好的答案,不知道我会接受哪个答案,非常感谢