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.
好的,所以我的服务器上有一个目录和一个文件,位于我的 public_html 文件夹中。
目录名是:sample 文件名是:index.html
在子目录示例中有另一个名为 home.html 的文件
现在,我希望 home.html 引用它的父目录 index.html。但是,为此我必须将我的 index.html 文件放入我不想要的子目录 sample 中。
所以,请告诉我该怎么做!我不想重定向,我想要一个指向我父目录中 index.html 的 home.html 文件的链接。
链接到父目录只需写:
<a href="../index.html">text</a>