How to indicate the parent directory ../ represents the parent directory of the source file, ../../ represents the parent directory of the source file, and so on. Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\index.html The code to add a hyperlink to index.html in info.html should be written like this: <a href = "../index.html">index.html</a> Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html Assume that the path of index.html is: c:\Inetpub\wwwroot\index.html The code to add a hyperlink to index.html in info.html should be written like this: <a href="../../../index.html">index.html</a> Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\wowstory\index.html The code to add a hyperlink to index.html in info.html should be written like this: <a href = "../wowstory/index.html">index.html</a> How to indicate that a sub-directory references a file in a sub-directory? Simply write the path of the sub-directory file. Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\blabla\html\index.html The code to add a hyperlink to index.html in info.html should be written like this: <a href = "html/index.html">index.html</a> Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\blabla\html\tutorials\index.html The code to add a hyperlink to index.html in info.html should be written like this: <a href = "html/tutorials/index.html">index.html</a> |
<<: Docker View the Mount Directory Operation of the Container
Table of contents 1. Basic concepts and basic com...
Preface As a DBA, you will often encounter some M...
How to write Vue foreach array and traverse array...
1. Introduction The topic of whether to use forei...
Background Here's what happened, Luzhu accide...
I had been working on the project before the New ...
Sometimes you need to install certain dependencie...
FFMPEG 3.4.1 version parameter details Usage: ffm...
This article shares the specific code of js to im...
Table of contents Installing the SDK Managing loc...
Preface At first, I wanted to use wget to downloa...
The execution efficiency of MySQL database has a ...
Table of contents Custom Vite plugins Using vite-...
In the past few years, I have been moving back an...
In the previous article, I introduced the functio...