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

时间:2017-05-28 11:07:50

标签: html

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

组件位于.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",以便我只需使用一个"/"

1 个答案:

答案 0 :(得分:2)

这是你需要的。您需要设置元标记 basedir

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

然后浏览器知道您希望/other-page/链接到/cmd/other-page/

你可以看到这是supported in all browsers