html href到不同文件夹中的一个页面

时间:2011-11-05 04:41:35

标签: html href

我已编辑过这个问题:

在root上,我有一个工作文件夹F(root / F),在F下有一个文件夹B(root / F / B)。

我有一个文件夹A包含一个php文件a.php(root / A / a.php),其中包含指向文件夹B的链接: <div><a href="B/">link</a></div>

在F中,有一个index.php(root / F / index.php)中包含a.php,所以index.php有一个指向文件夹B的链接;

文件夹F下有一个文件夹C.在C中,还有另一个index.php(root / F / C / index.php),其中还包含a.php。但现在href变为root / F / C / B /而不是root / F / B /.

如果我将a.php更新为<div><a href="/B/">link</a></div>,虽然root / F / C / index.php中的href变为root / F / B,这就是我想要的,在root / F / index.php中的href成为root / B /.

所以我的问题是如何在a.php中获取工作文件夹中所有页面的通用href?

感谢您的帮助!

2 个答案:

答案 0 :(得分:1)

如果您使用“/ F / B”,它将始终转到“root / F / B”。

答案 1 :(得分:0)

尝试:

<div><a href="/B/">link</a></div>

放一条绝对路径。