1、打开apache-tomcat-6.0.29\conf\web.xml 配置文件 |
2、去掉文件298行左右关于ssi配置的注释,具体去掉注释的代码如下: |
< servlet > |
< servlet-name >ssi</ servlet-name > |
< servlet-class > |
org.apache.catalina.ssi.SSIServlet |
</ servlet-class > |
< init-param > |
< param-name >buffered</ param-name > |
< param-value >1</ param-value > |
</ init-param > |
< init-param > |
< param-name >debug</ param-name > |
< param-value >0</ param-value > |
</ init-param > |
< init-param > |
< param-name >expires</ param-name > |
< param-value >666</ param-value > |
</ init-param > |
< init-param > |
< param-name >isVirtualWebappRelative</ param-name > |
< param-value >0</ param-value > |
</ init-param > |
< init-param > |
< param-name >inputEncoding</ param-name > |
< param-value >GBK</ param-value > |
</ init-param > |
< init-param > |
< param-name >outputEncoding</ param-name > |
< param-value >GBK</ param-value > |
</ init-param > |
< load-on-startup >4</ load-on-startup > |
</ servlet > |
其中以下代码为可选项,可以在以上模块中不加入: |
< init-param > |
< param-name >inputEncoding</ param-name > |
< param-value >GBK</ param-value > |
</ init-param > |
< init-param > |
< param-name >outputEncoding</ param-name > |
< param-value >GBK</ param-value > |
</ init-param > |
3、去掉文件405行左右关于ssi配置的注释,具体去掉注释的代码如下: |
|
< servlet-mapping > |
< servlet-name >ssi</ servlet-name > |
< url-pattern >*.shtml</ url-pattern > |
</ servlet-mapping > |
4、关于web.xml475行左右的filter不用开启 |
修改context.xml文件 |
1、打开apache-tomcat-6.0.29\conf\context.xml配置文件 |
2、在文件19行Context节点中加入privileged=”true” |
< Context privileged = "true" > |
<!-- Default set of monitored resources --> |
< WatchedResource >WEB-INF/web.xml</ WatchedResource > |
<!-- Uncomment this to disable session persistence across Tomcat restarts --> |
<!-- |
<Manager pathname="" /> |
--> |
<!-- Uncomment this to enable Comet connection tacking (provides events |
on session expiration as well as webapp lifecycle) --> |
<!-- |
<Valve className="org.apache.catalina.valves.CometConnectionManagerValve" /> |
--> |
</ Context > |
初级程序员
by: lakers想想 发表于:2018-01-17 15:57:09 顶(0) | 踩(0) 回复
good
回复评论