html文件上如何设置上下文相对路径?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html文件上如何设置上下文相对路径?相关的知识,希望对你有一定的参考价值。
我把html模版的文件复制到tomcat项目中,但相对路径错了,jsp文件能通过获得上下文路径设置相对路径,那html文件中怎么设置啊
参考技术A <%=request.getContextPath()%> 这个是绝对路径,要在JSP页面头加入:<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
在同一目录下用相对路径。追问
我问的是html文件好不
本回答被提问者和网友采纳 参考技术B <%=request.getContextPath()%>这个是绝对路径,要在JSP页面头加入:
<%
String
path
=
request.getContextPath();
String
basePath
=
request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
在同一目录下用相对路径。
以上是关于html文件上如何设置上下文相对路径?的主要内容,如果未能解决你的问题,请参考以下文章