我需要一些帮助,以将链接转发到页面上的锚标记。例如,我想要以下内容:
http://www.example.com/anchor转发到http://www.example.com#anchor
我也尝试为此设置301重定向,但是在那里也没有运气
重定向301 /锚http://www.example.com#anchor
答案 0 :(得分:0)
将其放在http://www.example.com/anchor.php中应该可以。
<?php
header("Location: http://www.example.com#anchor");
exit;
?>