需要从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>
结果是两种方式我都有循环页面刷新。
如何正确解决这个问题?