将链接转发到主页上的定位标记

时间:2018-08-07 19:56:48

标签: html redirect hyperlink web anchor

我需要一些帮助,以将链接转发到页面上的锚标记。例如,我想要以下内容:

http://www.example.com/anchor转发到http://www.example.com#anchor

我也尝试为此设置301重定向,但是在那里也没有运气

重定向301 /锚http://www.example.com#anchor

1 个答案:

答案 0 :(得分:0)

将其放在http://www.example.com/anchor.php中应该可以。

<?php
header("Location: http://www.example.com#anchor");
exit;
?>