HTML relative path relative to table of contents--Parent directory and subordinate directory

Source: Internet
Author: User

How to represent a parent directory

.. /indicates the directory where the source file is located, at the top level of the directory. /.. /represents the upper parent directory of the directory where the source file resides, and so on.

Suppose the info.html path is: c:/inetpub/wwwroot/sites/blabla/info.html
Suppose the index.html path is: c:/inetpub/wwwroot/sites/index.html
The code that joins the index.html hyperlink in info.html should be written like this:

<a href = ". /index.html ">index.html</a>

Suppose the info.html path is: c:/inetpub/wwwroot/sites/blabla/info.html
Suppose the index.html path is: c:/inetpub/wwwroot/index.html
The code that joins the index.html hyperlink in info.html should be written like this:

<a href = ". /.. /index.html ">index.html</a>

Suppose the info.html path is: c:/inetpub/wwwroot/sites/blabla/info.html
Suppose the index.html path is: c:/inetpub/wwwroot/sites/wowstory/index.html
The code that joins the index.html hyperlink in info.html should be written like this:

<a href = ". /wowstory/index.html ">index.html</a>
How to represent a subordinate directory

Refer to the Subordinate directory file, directly write the path of the subordinate directory file.

Suppose the info.html path is: c:/inetpub/wwwroot/sites/blabla/info.html
Suppose the index.html path is: c:/inetpub/wwwroot/sites/blabla/html/index.html
The code that joins the index.html hyperlink in info.html should be written like this:

<a href = "html/index.html" >index.html</a>

Suppose the info.html path is: c:/inetpub/wwwroot/sites/blabla/info.html
Suppose the index.html path is: c:/inetpub/wwwroot/sites/blabla/html/tutorials/index.html
The code that joins the index.html hyperlink in info.html should be written like this:

<a href = "html/tutorials/index.html" >index.html</a>

HTML relative path relative to directory--parent directory and subordinate directory

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.