绝对路径和相对路径

Bob*_*mar 10 tomcat path relative-path

使用任何Web服务器或Tomcat时,绝对路径和相对路径之间的区别是什么?

Vin*_*vic 28

绝对路径以/开头,并引用当前站点(或虚拟主机)根目录中的位置.

相对路径不以/开头,并且从引用文档的实际位置引用位置.

示例,假设root是http://foo.com/site/

绝对路径,无论我们在网站的哪个位置

/foo.html
Run Code Online (Sandbox Code Playgroud)

将参考http://foo.com/site/foo.html

相对路径,假设包含链接位于http://foo.com/site/part1/bar.html

../part2/quux.html
Run Code Online (Sandbox Code Playgroud)

将参考http://foo.com/site/part2/quux.html

要么

part2/blue.html
Run Code Online (Sandbox Code Playgroud)

将参考http://foo.com/site/part1/part2/blue.html