我有一个包含2个文件的目录
http://domain.com/folder/index.php和 http://domain.com/folder/page.php
在索引页面上,我正在尝试创建一个重定向到http://domain.com/folder/
的链接如果我建立这样的链接
<a href="#">Go to Index</a>
它不会刷新页面,如果我像这样保持空白
<a href="">Go to Index</a>
它会在我在同一文件夹中的任何页面上获得链接。如果我在这里http://domain.com/folder/page.php那个链接就像
<a href="http://domain.com/folder/page.php">Go to Index</a>
然后如何再次建立索引页面的链接,而不是我把index.php?
答案 0 :(得分:0)
您有几个选择:
您可以使用相对链接:
<a href="./page.php">Go to page.php</a>
或者如果你在page.php
<a href="./">Go to index.php</a>
这将查看您要更改的页面的包含文件夹。
<小时/> 您可以使用@ tilz0R建议的根路径并声明base href:
//on index.php
<head>
<base href="http://domain.com/folder/" target="_blank">
</head>
//on page.php:
<a href="/">Go to Index</a>