路径前加“/”与不加的区别

路径前加“/”与不加的区别。
加了就代表是根路径比如这个根路径是:localhost:8080/,那么加了“/”就是这个路径了。不加的话代表是项目的路径了,比如项目名称是“Log4JTest”,那么不加的根路径就是localhost:8080/Log4JTest/,呵呵差别很大哦。

以下贴一个路径转发的代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>欢迎使用</title>
<script language="javascript">
setTimeout("document.location.href='indexAction.do?method=index'",0);
</script>
</head>

<body >
</body>
</html>

代码的作用就是将首页放在Struts控制之内

你可能感兴趣的:(struts)