出于某种原因,当我使用header("Location")
新页面重定向时会保留哈希。
所以如果你在example.com/index.html#signup
我重定向与
header("Location: /account.html");
exit;
但随后它显示example.com/account.html#signup
为什么会发生这种情况,我该如何阻止它?IEexample.com/account.html
笔记:
我正在使用 .htaccess 重定向file.html
到file.php
RewriteRule ^([a-zA-Z0-9-_.]+)\.html$ $1.php [L]