- 招聘 : Linux运维
- 论坛徽章:
- 0
|
对了,以上配置要想正确解释jsp,还要在/usr/local/tomcat/conf/server.xml内加入
<Host name="www.test.cn" debug="0" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="/home/test/www" debug="0"
reloadable="true" crossContext="true"/>
<Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="localhost_log." suffix=".txt"
timestamp="true"/>
</Host>
请问,如果我使用了www.test.cn/~username的主页,要想也能执行jsp文件,是不是也要在/usr/local/tomcat/conf/server.xml文件里添加什么内容呢? |
|