重定向到相同的页面来锚定

需要从http://sitename.com/cat/index.php重定向到http://sitename.com/cat/index.php#anchor

我尝试了2种方式:php重定向和元刷新

PHP重定向

<?php
    $URL = "http://sitename.com/cat/index.php#anchor";
    header("Location: $URL");
?>
<html>
....

元刷新

<html>
    <head>
    ... 
    <meta http-equiv="refresh" content="0;url=http://sitename.ru/cat/index.php#anchor">
    ...
    </head>
...
</html>

通过这两种方式,我有循环页面刷新。

如何正确解决这个问题?


您不需要重定向页面,只需设置window.location.hash

window.location.hash="anchor";
链接地址: http://www.djcxy.com/p/1953.html

上一篇: redirect to same page to anchor

下一篇: URL Redirect Javascript