Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开始在不同目录中创建具有管理区域的网站。所以我开始使用 HTML 基础标记来告诉浏览器相对路径的起始位置。除了一件事之外,它似乎对所有事情都有效。
我的问题是当我这样做时:
<base href="http://localhost/testsite/"> ... <a href="/">Link to home</a>
该链接不会将我带到我的测试站点 index.html 页面,而是将我带到 localhost 目录树。我在这里做错了吗?
您在那里没有使用相对路径,它是绝对路径。当前文件夹的相对路径将是一个句点:
<a href=".">Link to home</a>