其他分享
首页 > 其他分享> > 相对路径、绝对路径

相对路径、绝对路径

作者:互联网

index当前页,目标页hello,localhost:8080为目标网站
相对路径会相对于当前页面所处位置
http://localhost:8080/aaa/bbb/index.html
http://localhost:8080/aaa/bbb/hello

绝对路径和当前页面所处位置无关都是从工程根路径开始
http://localhost:8080/aaa/bbb/index.html
http://localhost:8080/hello

<a href="hello">相对路径</a>
<a href="/hello">绝对路径1</a>
<a href="http://localhost:8080/hello">绝对路径2</a>

标签:index,8080,bbb,绝对路径,相对路径,http,localhost
来源: https://blog.csdn.net/yamingjian/article/details/123637703