- html链接的相对路径与绝对路径
- 绝对路径
- 完整的一个路径就是绝对路径,即包含schema://host[:port#]/path/.../[?query-string][#anchor]
- 例:http://news.sina.com.cn/world/
- 相对路径
- 第一个字符为斜杠/, redirect('/hello')
- 例:“/hello”, 这种会自动帮你添加你的协议名+域名+端口, 假设你的前一节为http://www.baidu.com:8000/aa, 系统会自动匹配为"http://www.baidu.com:8000/hello"
- 我们实际情况中一般使用这种
- 第一个字符不带斜杠 redirect('hello/')
- 例:“hello”, 这种会在当前url中path段往后添加,假设你当前路径http://www.baidu.com:8000/aa, 系统会自动匹配为“http://www.baidu.com:8000/aa/hello, ”