有一个二级域名的问题请教一下http://www.3gfox.com/store 变成---> http;//store.3gfox.com现在已经配置server.xml文件了
<Host name="store.3gfox.com" appBase="webapps"
unpackWARs="true" autoDeploy="true"> 
<Context path="" docBase="/3gfox/store" debug="0" reloadable="true"/> 
<Valve className="org.apache.catalina.valves.AccessLogValve"
 directory="logs"  prefix="web1_access_log." suffix=".txt"
 pattern="common" resolveHosts="false"/>
</Host>假如在/3gfox/store 下面有index.html,现在访问http;//store.3gfox.com可以正常访问但是/3gfox/store 下面的默认主页是index.jsp,需要调用javabean文件
所以会提示找不到class文件的路径+ --3gfox
|+ --store
|+ --WEB-INF
|+ --classes现在映射到store下面,所以找不到classess了有什么解决办法么?