gpt4 book ai didi

html - 如何设置html页面的根目录?

转载 作者:可可西里 更新时间:2023-11-01 13:22:53 24 4
gpt4 key购买 nike

我在服务器上的以下目录中:

组件位于 .phtml 文件中,但扩展名已被 htaccess 规则删除。

现在我想转到另一个 .phtml 文件,但我必须这样写:

<a href="../other-page/"></a>

我注意到我也可以这样做:

<a href="/other-page/"></a>

但是它不会转到http://example.nl/cms/other-page/如我所愿,但到http://example.nl/other-page/

如何将文档根目录更改为 "cms" 以便我只需要使用一个 "/"

最佳答案

这就是您所需要的。您需要设置元标记basedir:

<html>
<head>
<base href="http://example.nl/cms/">
</head>
<body>
<a href="/other-page/">click me</a>
</body>
</html>

然后浏览器通过/other-page/知道你想链接到/cms/other-page/

这是 supported in all browsers如您所见。

关于html - 如何设置html页面的根目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44226584/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com