0

所以我目前有以下侧边栏菜单:

<div id="menu">
<h3>Menu</h3>
<a href="#">Home</a>
<a href="wiezijnwij/index.php">Wie zijn wij?</a>
<a href="diensten/index.php">Diensten</a>
<a href="producten/index.php">Producten</a>
<a href="service/index.php">Service</a>
</div>

当我在家中并单击侧边栏中的 wiezijnwij 页面时,它会将我完美地重定向到此页面。但是,当我在 wiezijnwij 页面上并在侧边栏菜单中再次单击 wiezijnwijpage 时,它​​会将我重定向到 localhost/project/wiezijnwij/wiezijnwij/index.php

所以,它在重复 wiezijnwij .. 不知道为什么

4

2 回答 2

1

You're using relative URLs, so the browser appends the path the href to the directory in the current URL.
You want to use absolute URLs, starting with a /.

于 2013-11-06T18:13:31.160 回答
1

您可以为您的 URL 提供绝对路径,例如:

<a href="/project/wiezijnwij/index.php">Wie zijn wij?</a>
于 2013-11-06T18:13:44.063 回答