search
HomeWeb Front-endHTML TutorialIn-depth understanding of HTML relative path (Relative Path) and absolute path (Absolute Path)_HTML/Xhtml_Web page production

I have been engaged in Java web development for more than a year. It is inevitable to write HTML or JSP pages. The power of web applications lies in its hyperlinks (Hyper Link). For example, in page a, save the link address pointing to page b ( That is, URI), but the problem lies precisely here, how to correctly reference a file. For example, how to reference another HTML web page as a hyperlink in an HTML web page? How to insert an image into a web page? ......
In addition, relative paths are also very popular in struts, and it is easy to get confused if you are not careful.

If you use the wrong file path when referencing a file (such as adding a hyperlink, or inserting a picture, etc.), the reference will become invalid (the linked file cannot be browsed, or the inserted picture cannot be displayed, etc.).

In order to avoid these errors, cite the documents correctly and write down the differences and usages so that you can check them in the future.

HTML has two ways of writing paths: relative paths and absolute paths

HTML relative path (relative path)
File references in the same directory
If the source file and the reference file are in the same directory, just write the name of the reference file directly.

We now create a source file info.HTML, and reference the index.HTML file as a hyperlink in info.HTML.

Assume the info.HTML path is: d:tomcatwebappshelloblablainfo.HTML
Assume the index.HTML path is: d:tomcatwebappshelloblablaindex.HTML
The code to add the index.HTML hyperlink to info.HTML should look like this Write:

Copy code
The code is as follows:

How to represent the upper-level directory
../ represents the upper-level directory of the directory where the source file is located, .. /../ represents the upper-level directory of the directory where the source file is located, and so on.

Assume the info.HTML path is: d:tomcatwebappshelloblablainfo.HTML
Assume the index.HTML path is: d:tomcatwebappshelloindex.HTML
The code to add the index.HTML hyperlink to info.HTML should look like this Write:

Copy code
The code is as follows:

Assume the info.HTML path is: d:tomcatwebappshelloblablawowstoryinfo.HTML
Assume the index.HTML path is: d:tomcatwebappshelloindex. HTML
The code to add index.HTML hyperlink to info.HTML should be written like this:

Copy code
code As follows:

Assume the info.HTML path It is: d:tomcatwebappshelloblablainfo.HTML
Assume the index.HTML path is: d:tomcatwebappshellowowstoryindex.HTML
The code to add the index.HTML hyperlink to info.HTML should be written like this:

Copy code
The code is as follows:

How to represent the lower-level directory
refers to the file in the lower-level directory, just write the path of the file in the lower-level directory directly.

Assume the info.HTML path is: d:tomcatwebappshelloblablainfo.HTML
Assume the index.HTML path is: d:tomcatwebappshelloblablaHTMLindex.HTML
The code to add the index.HTML hyperlink to info.HTML should look like this Write:

Copy code
The code is as follows:

Assume the info.HTML path is: d:tomcatwebappshelloblablainfo.HTML
Assume the index.HTML path is: d:tomcatwebappshelloblablaHTMLtutorialsindex.HTML
The code to add index.HTML hyperlink to info.HTML should be written like this:

Copy the code
The code is as follows :

HTML absolute path (absolute path)
HTML absolute path (absolute path) refers to the full path of a file with a domain name.

Suppose you register the domain name www.jb51.net and apply for a virtual host. The virtual host provider will give you a directory, such as www. This www is the root directory of the website.

Assume that a file index.HTML is placed in the www root directory. The absolute path of this file is: http://www.jb51.net/index.html.

Assume that in the www root directory Create a directory called HTML_tutorials under the directory, and then place a file index.HTML in the directory. The absolute path of this file is http://www.jb51.net/article/32759.htm.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
从绝对路径到相对路径:Linux路径使用技巧从绝对路径到相对路径:Linux路径使用技巧Feb 23, 2024 am 08:00 AM

从绝对路径到相对路径:Linux路径使用技巧在Linux系统中,路径是我们操作文件和目录时经常会碰到的一个重要概念。在路径的使用过程中,绝对路径和相对路径是两种常见的表示方式。本文将深入探讨如何在Linux系统中灵活运用路径,特别是从绝对路径转换为相对路径的技巧,并通过具体代码示例来进行演示。什么是绝对路径和相对路径?首先,我们需要明确绝对路径和相对

理解Linux绝对路径与相对路径的区别理解Linux绝对路径与相对路径的区别Feb 21, 2024 pm 04:33 PM

理解Linux绝对路径与相对路径的区别在Linux系统中,文件系统是以树状结构组织的,每个文件或目录都有一个唯一的路径来定位它们在文件系统中的位置。在使用Linux系统时,经常会涉及到绝对路径和相对路径的概念。本文将详细解释绝对路径和相对路径的区别,并具体以代码示例来说明它们的应用。绝对路径是从根目录开始的完整路径描述一个文件或目录的位置。根目录在Linux

视觉工作室代码扩展:15 年 2023 个最佳视觉工作室代码扩展:15 年 2023 个最佳Apr 13, 2023 pm 02:31 PM

Visual Studio Code是Visual Studio IDE的迷你版本,它是轻量级的,可以使用大量的扩展,支持所有语言等等。当涉及到扩展时,你应该知道最好的Visual Studio Code扩展,以提高你的生产力。对于Visual Studio IDE用户,我们已经有一个指南,列出了Visual Studio的一些最佳扩展。在本指南中,我们将为您提供一堆Visual Studio Code扩展,这些扩展将帮助您提高效率和生产力。让我们直接进入它。什么是最好的Visual Studi

掌握Linux系统中路径表示法:绝对路径与相对路径掌握Linux系统中路径表示法:绝对路径与相对路径Feb 21, 2024 pm 10:24 PM

掌握Linux系统中路径表示法:绝对路径与相对路径在Linux系统中,路径表示法是非常重要的基础知识,特别是对于开发人员和系统管理员来说。路径表示法主要分为绝对路径和相对路径两种,本文将通过具体的代码示例来说明这两种路径表示法的区别和用法。一、绝对路径绝对路径是从根目录开始的完整路径,表示文件或目录在整个文件系统中的位置。绝对路径以斜杠“/”开头,例如:/h

web前端中的相对路径是什么web前端中的相对路径是什么Aug 25, 2022 pm 04:58 PM

在web前端中,相对路径就是指由当前文件所在的路径引起的跟其它文件(或文件夹)的路径关系,是相对于当前文件的目标文件位置;简单来说,就是以当前文件为参考点,来确定不同文件的路径,相对路径一般会以“./”、“../”开始。好处:当整个项目移动时,项目内文件之间的相对关系没有改变,之前设置的路径任然是准确的,不用进行修改。

PHP函数介绍—realpath(): 返回绝对路径PHP函数介绍—realpath(): 返回绝对路径Jul 25, 2023 pm 09:09 PM

PHP函数介绍—realpath():返回绝对路径在开发PHP程序时,我们经常会遇到文件路径问题。特别是当我们需要读取、写入或者引用其他文件时,确保获取到的路径是准确的非常重要。PHP中提供了一个非常实用的函数来解决这个问题,它就是realpath()函数。realpath()函数的作用是将给定的相对路径转换为绝对路径,并返回结果。这意味着无论当前代码的执

如何正确使用Linux的绝对路径与相对路径如何正确使用Linux的绝对路径与相对路径Feb 22, 2024 am 10:12 AM

如何正确使用Linux的绝对路径与相对路径Linux作为一种常用的操作系统,其文件系统的路径是用户操作中不可或缺的一部分。在Linux系统中,存在两种常用的路径表示方式,分别是绝对路径和相对路径。正确使用绝对路径和相对路径是提高工作效率的关键,下面将结合具体代码示例来介绍如何正确使用Linux的绝对路径与相对路径。一、绝对路径绝对路径是指从根目录开始直到文件

vue中引入绝对路径报错怎么办vue中引入绝对路径报错怎么办Jan 29, 2023 pm 02:57 PM

vue中引入绝对路径报错的解决办法:1、使用“await import(’@/assets/img/22.png’);”方式引入路径;2、循环利用返回值请求本地图片即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version