在 web 中 / 斜杠 是一种绝对路径。
- / 斜杠 如果被浏览器解析,得到的地址是:http://ip:port/
<a href="/">/</a>
- 斜杠在服务器解析的时候,表示地址为:http://ip:port/工程路径
1、 /hello 表示地址为:http://ip:port/工程路径/hello
2、/servlet1
3、servletContext.getRealPath(“/”);
4、request.getRequestDispatcher(“/”);请求转发
- 特殊情况: response.sendRediect(“/”);重定向; 把斜杠发送给浏览器解析。得到 http://ip:port/